diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-13 08:46:39 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-13 08:46:39 +0000 |
commit | 1cedada7cd5ee57938836adb35f63f336b1a652a (patch) | |
tree | 5c49672d4b57bbec7dcd18180b8778061625cca7 | |
parent | 66a399245e55eeea478712f09247046e023bef8e (diff) | |
download | busybox-w32-1cedada7cd5ee57938836adb35f63f336b1a652a.tar.gz busybox-w32-1cedada7cd5ee57938836adb35f63f336b1a652a.tar.bz2 busybox-w32-1cedada7cd5ee57938836adb35f63f336b1a652a.zip |
- Mention code-cleanup possibilities in TODO.
git-svn-id: svn://busybox.net/trunk/busybox@13264 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | TODO | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -233,3 +233,14 @@ Minor stuff: | |||
233 | if(!ioctl (fd, WDIOC_GETTIMEOUT, &tmo)) timer_duration = 1 + (tmo / 2); | 233 | if(!ioctl (fd, WDIOC_GETTIMEOUT, &tmo)) timer_duration = 1 + (tmo / 2); |
234 | Unfortunately, that needs linux/watchdog.h and that contains unfiltered | 234 | Unfortunately, that needs linux/watchdog.h and that contains unfiltered |
235 | kernel types on some distros, which breaks the build. | 235 | kernel types on some distros, which breaks the build. |
236 | |||
237 | |||
238 | Code cleanup: | ||
239 | |||
240 | Replace deprecated functions. | ||
241 | |||
242 | bzero() -> memset() | ||
243 | --- | ||
244 | sigblock(), siggetmask(), sigsetmask(), sigmask() -> sigprocmask et al | ||
245 | --- | ||
246 | |||