File we only compile in for the obos_registrar, the one for testing under R5. Contains dummies for syscalls not existent there.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10996 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
9e4d0f686e
commit
c72f8221e0
23
src/servers/registrar/R5Compatibility.cpp
Normal file
23
src/servers/registrar/R5Compatibility.cpp
Normal file
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright 2005, Ingo Weinhold, bonefish@users.sf.net. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
// Syscalls not existing under R5
|
||||
|
||||
#include <syscalls.h>
|
||||
|
||||
// _kern_register_messaging_service
|
||||
area_id
|
||||
_kern_register_messaging_service(sem_id lockSem, sem_id counterSem)
|
||||
{
|
||||
return B_ERROR;
|
||||
}
|
||||
|
||||
// _kern_unregister_messaging_service
|
||||
status_t
|
||||
_kern_unregister_messaging_service()
|
||||
{
|
||||
return B_ERROR;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user