Skip to content

Commit 2992099

Browse files
committed
Merge branch 'main' of github.com:WebAssembly/spec into wasmfx-merge
2 parents ee9cbe7 + bcd1924 commit 2992099

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

document/core/index.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Status: ED
66
Level: 2
77
TR: https://www.w3.org/TR/wasm-core-2/
88
ED: https://webassembly.github.io/spec/core/bikeshed/
9-
Editor: Andreas Rossberg (Dfinity Stiftung)
9+
Editor: Andreas Rossberg
1010
Repository: WebAssembly/spec
1111
Markup Shorthands: css no, markdown no, algorithm no, idl no
1212
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.

document/core/util/katex

Submodule katex updated 279 files

document/core/util/mathjax2katex.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# -*- coding: latin-1 -*-
33

44
import queue
5+
import multiprocessing
56
import os
67
import re
78
import shelve
@@ -229,7 +230,8 @@ def Worker():
229230
sys.stderr.write('.')
230231

231232
q = queue.Queue()
232-
for i in range(len(os.sched_getaffinity(0))):
233+
for i in range(len(os.sched_getaffinity(0)) if "sched_getaffinity" in dir(os)
234+
else multiprocessing.cpu_count()):
233235
t = threading.Thread(target=Worker)
234236
t.daemon = True
235237
t.start()

0 commit comments

Comments
 (0)