summaryrefslogtreecommitdiff
path: root/win32 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* win32: add waitpid()Nguyễn Thái Ngọc Duy2010-09-102-0/+11
|
* win32: add mkdir()Nguyễn Thái Ngọc Duy2010-09-101-0/+6
|
* win32: add get_busybox_exec_path(), which is bb_busybox_exec_pathNguyễn Thái Ngọc Duy2010-09-101-0/+9
| | | | | This function will become bb_busybox_exec_path because there is no fixed installation location on Windows.
* win32: add realpath()Nguyễn Thái Ngọc Duy2010-09-101-0/+6
|
* win32: add strsep()Nguyễn Thái Ngọc Duy2010-09-101-0/+18
|
* win32: add link()Nguyễn Thái Ngọc Duy2010-09-101-0/+21
|
* win32: add function to map windows errors to posix onesNguyễn Thái Ngọc Duy2010-09-101-0/+113
|
* win32: add signal routines and SIGALRM supportNguyễn Thái Ngọc Duy2010-09-101-0/+124
| | | | | | The implementation for SIGALRM only because Git needs it (I think for progress display or something). Probably not hurt having it. Although the only thing needed here are stubs.
* win32: add getpwuid()Nguyễn Thái Ngọc Duy2010-09-101-0/+14
|
* win32: add localtime_r()Nguyễn Thái Ngọc Duy2010-09-101-0/+7
|
* win32: add gmtime_r()Nguyễn Thái Ngọc Duy2010-09-101-0/+7
|
* win32: add pipe()Nguyễn Thái Ngọc Duy2010-09-101-0/+7
|
* win32: add gettimeofday()Nguyễn Thái Ngọc Duy2010-09-101-0/+40
|
* win32: add mkstemp()Nguyễn Thái Ngọc Duy2010-09-101-0/+8
|
* win32: add sleep()Nguyễn Thái Ngọc Duy2010-09-101-0/+6
|
* win32: set binary I/O mode by defaultNguyễn Thái Ngọc Duy2010-09-102-0/+4
| | | | | | | | | Text mode is default on Windows, which is just bad. This file also hosts many functions that were extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository, under directory compat. Some functions are modified/added by me, but usually credits go to Git developers.
* win32: Import fnmatch sourceNguyễn Thái Ngọc Duy2010-09-102-0/+495
| | | | | This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository.
* win32: add missing system headersNguyễn Thái Ngọc Duy2010-09-108-0/+0
| | | | | | | | These empty headers are to prevent #include errors. Of course those #include may be wrapped inside #ifdefs and excluded, but that would turn libbb.h into a #ifdef mess. Note that all missing declaration is in mingw.h, not in these files.
* win32: Import fnmatch headerNguyễn Thái Ngọc Duy2010-09-101-0/+84
| | | | | This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository.
* win32: add sched.hNguyễn Thái Ngọc Duy2010-09-101-0/+1
|
* win32: add termios.hNguyễn Thái Ngọc Duy2010-09-101-0/+129
Just some declaration enough to build. Proper TTY support may come later, targeting Cygwin-based terminals.