diff options
Diffstat (limited to 'TODO')
-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 | |||