Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-31 | include uio.h in socket.h so iovec is defined | Alon Zakai | |
2012-10-31 | emscripten_cancel_main_loop in native | Alon Zakai | |
2012-10-31 | rename worker_t to worker_handle | Alon Zakai | |
2012-10-28 | Merge pull request #651 from larsxschneider/json_parser | Alon Zakai | |
Fix -O1 warning and use proper pointers for Jansson library. | |||
2012-10-26 | emscripten_get_worker_queue_size | Alon Zakai | |
2012-10-25 | Fix -O1 warning and use proper pointers for Jansson library. | Lars Schneider | |
See details: https://github.com/kripken/emscripten/pull/636#issuecomment-9456782 | |||
2012-10-22 | comment on separate compilation of workers | Alon Zakai | |
2012-10-22 | initial work on worker api | Alon Zakai | |
2012-10-19 | add argument to emscripten_async_prepare_data | Alon Zakai | |
2012-10-19 | emscripten_async_prepare_data | Alon Zakai | |
2012-10-17 | Add `library_jansson` for JSON parsing. | Lars Schneider | |
Jansson is a C library for encoding, decoding and manipulating JSON data [1]. `library_jansson` mimics this interface (currently only for decoding) to perform JSON parsing in Javascript. [1] https://github.com/akheron/jansson | |||
2012-10-13 | add parameter to emscripten_set_main_loop to optionally simulate an infinite ↵ | Alon Zakai | |
loop by throwing an exception (like glutMainLoop) | |||
2012-10-12 | embind header fixes | Alon Zakai | |
2012-10-04 | emscripten_async_prepare | Alon Zakai | |
2012-10-02 | improve emscripten.h for native builds | Alon Zakai | |
2012-10-01 | Merge pull request #592 from imvu/embind-pull-request | Alon Zakai | |
Embind pull request | |||
2012-09-29 | headers fix; fixes test_inet | Alon Zakai | |
2012-09-28 | SO_KEEPALIVE | Alon Zakai | |
2012-09-28 | support ioctl-FIONREAD | Alon Zakai | |
2012-09-27 | initial (not-yet-working) sockets implementation | Alon Zakai | |
2012-09-25 | Break embind's dependency on boost::optional | Chad Austin | |
2012-09-25 | Add embind headers | Chad Austin | |
2012-09-21 | execinfo.h | Alon Zakai | |
2012-09-21 | move pthreads defines earlier | Alon Zakai | |
2012-09-21 | allow more pthreads header | Alon Zakai | |
2012-09-21 | add getrlimit | Alon Zakai | |
2012-09-21 | add freebsd spawn.h | Alon Zakai | |
2012-09-21 | add bogus TIOCG* consts | Alon Zakai | |
2012-09-21 | add dladdr | Alon Zakai | |
2012-09-21 | add some more pthread constants | Alon Zakai | |
2012-09-20 | mntent.h header | Alon Zakai | |
2012-09-17 | add void* argument to emscripten_async_call and ↵ | Alon Zakai | |
emscripten_push_main_loop_blocker | |||
2012-09-16 | Make EGLNative* typedefs work without need for X11 headers. | LCID Fire | |
2012-09-09 | prevent <sys/select.h> from being included multiple times | Mokhtar Naamani | |
2012-08-14 | add TCP and UDP to net/netinet/in.h | Alon Zakai | |
2012-07-21 | emscripten_push_uncounted_main_loop_blocker | Alon Zakai | |
2012-07-21 | improve emscripten_push_main_loop_blocker definition | Alon Zakai | |
2012-07-21 | name main loop blockers | Alon Zakai | |
2012-07-20 | warning on emscripten_push_main_loop_blocker | Alon Zakai | |
2012-07-20 | even better main loop blockers progress reporting | Alon Zakai | |
2012-07-20 | better main loop blockers progress reporting | Alon Zakai | |
2012-07-13 | emscripten_push_main_loop_blocker improvements | Alon Zakai | |
2012-07-12 | emscripten_push_main_loop_blocker | Alon Zakai | |
2012-06-22 | misc library additions/fixes | Alon Zakai | |
2012-06-21 | Implementation for emscripten_async_wget | Aleksander Guryanov | |
2012-06-15 | fix emscripten_async_call for native builds with multiple files | Alon Zakai | |
2012-06-15 | move emscripten.h to emscripten/emscripten.h, so native builds can -I that ↵ | Alon Zakai | |
dir and not get anything else | |||
2012-06-14 | EMSCRIPTEN_KEEPALIVE | Alon Zakai | |
2012-06-12 | emscripten_random | Alon Zakai | |
2012-06-05 | Added a helper function emscripten_set_canvas_size function which allows to ↵ | Jukka Jylänki | |
resize the <canvas> element on the web page in 'generic' fashion without having to depend on SDL or X11 headers in C code. This function is intended to be used in conjunction with EGL to specify a custom pixel resolution for the canvas (EGL API does not have expressiveness to do arbitrary pixel sizes). |