Use is_computer_on() as test syscall.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23044 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2007-12-01 19:27:30 +00:00
parent 4a241f2ac3
commit ccaac177f6

View File

@ -9,8 +9,6 @@
#ifdef __HAIKU__ #ifdef __HAIKU__
# include <syscalls.h> # include <syscalls.h>
#else
extern "C" void _kclose_(int fd);
#endif #endif
@ -22,10 +20,9 @@ main(int argc, char **argv)
for (int32 i = 0; i < loops; i++) { for (int32 i = 0; i < loops; i++) {
#ifdef __HAIKU__ #ifdef __HAIKU__
// _kern_null(); _kern_is_computer_on();
_kern_close(-1);
#else #else
_kclose_(-1); is_computer_on();
#endif #endif
} }