Commented out real-time signal related stuff (SA_SIGINFO, waitid()) to

prevent "configure" scripts from thinking we do actually support it.
Having real-time signals would be nice though (cf. #1935).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24444 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2008-03-18 17:33:03 +00:00
parent 98fe648b6e
commit 62319d069e
3 changed files with 19 additions and 10 deletions
+8 -7
View File
@@ -71,11 +71,12 @@ waitpid(pid_t pid, int *_status, int options)
}
int
waitid(idtype_t idType, id_t id, siginfo_t *info, int options)
{
// waitid() is not available on BeOS so we may be lazy here and remove it...
fprintf(stderr, "waitid(): NOT IMPLEMENTED\n");
return -1;
}
// TODO: Implement as part of real-time signal support!
//int
//waitid(idtype_t idType, id_t id, siginfo_t *info, int options)
//{
// // waitid() is not available on BeOS so we may be lazy here and remove it...
// fprintf(stderr, "waitid(): NOT IMPLEMENTED\n");
// return -1;
//}