function _getenv(name) { if (ENVIRONMENT_IS_PTHREAD) return _emscripten_sync_run_in_browser_thread_ii(1, name); // char *getenv(const char *name); if (name === 0) return 0; name = Pointer_stringify(name); if (!ENV.hasOwnProperty(name)) return 0;
if (_getenv.ret) _free(_getenv.ret); _getenv.ret = allocateUTF8(ENV[name]); return _getenv.ret; }
function _getenv(name) { var ret = (function() { -s ENVIRONMENT=worker \ -s USE_PTHREADS=1 \ -s EXCEPTION_DEBUG=1 \ -s LIBRARY_DEBUG=1 \ -s SYSCALL_DEBUG=1 \ -s PTHREADS_DEBUG=1 -s PTHREAD_POOL_SIZE=8 \ -s TOTAL_MEMORY=536870912 \ -s PROXY_TO_PTHREAD=1 \ -s ASSERTIONS=2 -s USE_OGG=1 \ -s USE_VORBIS=1 \ -s USE_ZLIB=1 \ -s PRECISE_F32=2 \ -s DOUBLE_MODE=0 \ -s INVOKE_RUN=0 \
--
You received this message because you are subscribed to the Google Groups "emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to emscripten-disc...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.