aboutsummaryrefslogtreecommitdiff
path: root/win32/sys (follow)
Commit message (Collapse)AuthorAgeFilesLines
* inotifyd: WIN32 portRon Yorston2020-04-151-0/+0
| | | | | | | | | | | | Use ReadDirectoryChangesW to implement inotifyd for WIN32. There are limitations: - It's only possible to watch directories, not files. - The notification doesn't distinguish between different changes to file state. All changes other than creation, deletion and renaming are reported as 'c'.
* time: WIN32 portRon Yorston2020-04-061-0/+11
| | | | | | | | Port the time applet to WIN32. This requires the implemntation of a replacement for wait3(2). Only elapsed, user and system times are supported, not the memory and i/o statistics reported by GNU time.
* win32: remove unused include filesRon Yorston2019-02-202-0/+0
| | | | | | Upstream commit d9aabfe578 (make busybox more portable) moved a couple of include files into platform-dependent code so we no longer need dummy versions.
* win32: add dummy sys/select.h required for pollRon Yorston2018-02-141-0/+0
|
* win32: define statvfs as statfsRon Yorston2017-11-031-0/+2
| | | | | | df now uses statvfs instead of statfs. Support this by pretending that statfs *is* statvfs. Not really true but good enough for the present purpose.
* win32: add dummy sys/prctl.hRon Yorston2017-07-291-0/+0
|
* win32: improve implementation of statfsRon Yorston2015-11-011-1/+0
| | | | The WIN32 calls should be passed the root directory of the filesystem.
* Add empty sys/syscall.hRon Yorston2014-03-201-0/+0
|
* Make dummy resource.hRon Yorston2014-01-061-0/+0
|
* Extend WIN32 statfs to include type, fsid and namelenRon Yorston2014-01-062-17/+24
|
* Move mingw32 poll.h from sysRon Yorston2014-01-021-53/+0
|
* df: limited implementation for WIN32Ron Yorston2013-04-031-0/+17
|
* Use gnulib poll, importing the version from gitRon Yorston2012-03-301-0/+53
|
* Merge commit 'da4441c44f6efccb6f7b7588404d9c6bfb7b6af8' into mergeRon Yorston2012-03-221-0/+0
| | | | | | | Conflicts: libbb/vfork_daemon_rexec.c networking/wget.c procps/ps.c
* Implementation of uname for WIN32Ron Yorston2012-02-091-0/+66
|
* win32: net: add missing stub header filesNguyễn Thái Ngọc Duy2010-09-211-0/+0
|
* Merge branch 'origin/master' (early part)Nguyễn Thái Ngọc Duy2010-09-141-0/+0
| | | | | Conflicts: shell/ash.c
* win32: add missing system headersNguyễn Thái Ngọc Duy2010-09-105-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.