aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2013-07-21Merge pull request #1412 from michaeljbishop/pread-fixAlon Zakai
Fixes in pread()
2013-07-20 - added lchmodAnthony Pesch
- fixed up errno values for mknod - split up stat tests into test_stat, test_stat_chmod, test_stat_mknod
2013-07-20fix isgraphToadKing
2013-07-19Touched up formatting.Michael J. Bishop
No functional change.
2013-07-19handle %Nc in sscanf; fixes #1407Alon Zakai
2013-07-18fix for refcount cleanupAnthony Pesch
2013-07-18Fixes in pread()Michael Bishop
The bug occurs when pread() doesn't return 0 when asked to read an offset beyond its buffer. This behavior is explicitly documented at: http://pubs.opengroup.org/onlinepubs/000095399/functions/read.html > If the starting position is at or after the end-of-file, 0 > shall be returned
2013-07-18fixed stderr output to use printErrAnthony Pesch
2013-07-16Expose 'lstat64' as a simple alias for 'lstat'.Ryan Kelly
2013-07-15Merge pull request #1388 from inolen/unlink_fixesAlon Zakai
misc unlink / rmdir fixes
2013-07-15 - rmdir / unlink no longer follow the final symlinkAnthony Pesch
- rmdir / unlink no longer check write permission on the found object, but on its parent - rmdir should return EBUSY when path matches the root / cwd - unlinking a directory should return EPERM according to POSIX (EISDIR is a Linux convention)
2013-07-15do not use safe heap in strptime loading of tm values - may have never been ↵Alon Zakai
initialized
2013-07-15use high-precision llrint in ta2 onlyAlon Zakai
2013-07-15Merge branch 'self-dlopen' of github.com:int3/emscripten into incomingAlon Zakai
2013-07-15check for isTerminal on the object of the filesystem entryAlon Zakai
2013-07-15implement llrint properly; fixes #1380Alon Zakai
2013-07-15Implement strptimeSoeren Balko
2013-07-14Merge pull request #1381 from inolen/tty_fixesAlon Zakai
isatty and ttyname fixes
2013-07-14 - moved std stream isTerminal property to object so all streams can seeAnthony Pesch
- made ttyname use isatty to check if fd is tty - hardcoded /dev/tty as tty name is ttyname_r - fixed and changed isatty and ttyname tests to run natively
2013-07-13open should not set EISDIR when opening an existing directory with O_CREATAnthony Pesch
2013-07-13Merge pull request #1374 from inolen/posix_fallocate_fixAlon Zakai
check write permission in posix_fallocate
2013-07-13Merge pull request #1372 from inolen/dirent_fixesAlon Zakai
minor fixes to return codes of closedir, telldir
2013-07-13don't check write permissions in utimeAnthony Pesch
2013-07-12check write permission in posix_fallocateAnthony Pesch
2013-07-12minor fixes to return codes of closedir, telldirAnthony Pesch
2013-07-12misc ungetc fixesAnthony Pesch
2013-07-11Implement self-dlopen.Jez Ng
2013-07-03add various aborting stubs for libc stuff used in libc++Alon Zakai
2013-06-24Add some IPv6 stuff to netinet/in.h.David Barksdale
2013-06-19fix memmoveAlon Zakai
2013-06-18IMPROVED: va_list offset is not hardcoded, added commentsmanny/MADE
2013-06-18BUGFIX: lists cannot be llvm_va_copy was broken, didn't copy list offsetmanny/MADE
2013-06-17Implement strnlen.David Barksdale
2013-06-10rename int because closure hates itAlon Zakai
2013-06-10comment on not inlining for setjmpAlon Zakai
2013-06-07fix multiplications in setjmp codeAlon Zakai
2013-06-07Make lrint more correct. Closes #1265.Jez Ng
2013-06-05INCOMING_QUEUE_LENGTH was not found by CircularBuffer constructor.Alan Kligman
2013-06-05Missed closing parenthesis.Alan Kligman
2013-06-04Merge branch 'master' of github.com:feeley/emscripten into incomingAlon Zakai
2013-06-04Add basic support for nonblocking readMarc Feeley
2013-06-04Merge pull request #1244 from onnoj/incomingAlon Zakai
Fixed Issue #1241: _scanString not supporting upper case format specifie...
2013-06-04check more carefully if a stream is a socketAlon Zakai
2013-06-04leave low fds for socketsAlon Zakai
2013-06-04Merge branch 'incoming' of github.com:kanaka/emscripten into incomingAlon Zakai
2013-06-04Merge pull request #1225 from inolen/errnoAlon Zakai
synced library.js errno codes with sys/errno.h
2013-06-04Updated tests to reflect new error valuesAnthony Pesch
2013-06-04Merge branch 'incoming-merge' of github.com:modeswitch/emscripten into incomingAlon Zakai
2013-06-04Fixed Issue #1241: _scanString not supporting upper case format specifiers ↵Onno
A, E, F, G, X.
2013-06-03show stub malloc/free warnings only in ASSERTIONS==2Alon Zakai