Skip to content

Commit

Permalink
Merge branch 'main' of github.com:WebAssembly/spec into wasmfx-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dhil committed Feb 15, 2024
2 parents ee9cbe7 + bcd1924 commit 2992099
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion document/core/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Status: ED
Level: 2
TR: https://www.w3.org/TR/wasm-core-2/
ED: https://webassembly.github.io/spec/core/bikeshed/
Editor: Andreas Rossberg (Dfinity Stiftung)
Editor: Andreas Rossberg
Repository: WebAssembly/spec
Markup Shorthands: css no, markdown no, algorithm no, idl no
Abstract: This document describes release 2.0 of the core WebAssembly standard, a safe, portable, low-level code format designed for efficient execution and compact representation.
Expand Down
2 changes: 1 addition & 1 deletion document/core/util/katex
Submodule katex updated 279 files
4 changes: 3 additions & 1 deletion document/core/util/mathjax2katex.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: latin-1 -*-

import queue
import multiprocessing
import os
import re
import shelve
Expand Down Expand Up @@ -229,7 +230,8 @@ def Worker():
sys.stderr.write('.')

q = queue.Queue()
for i in range(len(os.sched_getaffinity(0))):
for i in range(len(os.sched_getaffinity(0)) if "sched_getaffinity" in dir(os)
else multiprocessing.cpu_count()):
t = threading.Thread(target=Worker)
t.daemon = True
t.start()
Expand Down

0 comments on commit 2992099

Please sign in to comment.