Skip to content

Commit

Permalink
updated ngspice
Browse files Browse the repository at this point in the history
  • Loading branch information
danchitnis committed Jul 11, 2023
1 parent 5cf55b9 commit c119fe8
Show file tree
Hide file tree
Showing 3 changed files with 784 additions and 849 deletions.
6 changes: 3 additions & 3 deletions Docker/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ const text2rep = `
result = getInput();
`;

const text3 = `function _emscripten_sleep(ms) {
return Asyncify.handleSleep(wakeUp => safeSetTimeout(wakeUp, ms));
const text3 = `var _emscripten_sleep = function(ms) {
return Asyncify.handleSleep((wakeUp => safeSetTimeout(wakeUp, ms)));
}`;

const text3rep = `
function _emscripten_sleep(ms) {
var _emscripten_sleep = function(ms) {
handleThings();
}`;

Expand Down
Loading

0 comments on commit c119fe8

Please sign in to comment.