Added symbol exports for _kset_mon_limit_() and _kset_fd_limit_().
Don't do anything yet, though. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12768 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -3,6 +3,7 @@ SubDir OBOS_TOP src system libroot os arch x86 ;
|
|||||||
KernelMergeObject os_arch_$(OBOS_ARCH).o :
|
KernelMergeObject os_arch_$(OBOS_ARCH).o :
|
||||||
atomic.S
|
atomic.S
|
||||||
byteorder.S
|
byteorder.S
|
||||||
|
compatibility.c
|
||||||
get_stack_frame.S
|
get_stack_frame.S
|
||||||
system_info.c
|
system_info.c
|
||||||
system_time.S
|
system_time.S
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2005, Axel Dörfler, [email protected]. All rights reserved.
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// This file includes some known R5 syscalls
|
||||||
|
// ToDo: maybe they should indeed do something...
|
||||||
|
|
||||||
|
#include <SupportDefs.h>
|
||||||
|
|
||||||
|
|
||||||
|
int _kset_mon_limit_(int num);
|
||||||
|
int _kset_fd_limit_(int num);
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
_kset_mon_limit_(int num)
|
||||||
|
{
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
_kset_fd_limit_(int num)
|
||||||
|
{
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user