Renamed image and node monitor syscalls to the new scheme.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8236 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-29 20:19:48 +00:00
parent bb45cbbb30
commit f004b0c15e
2 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
@ -48,14 +48,14 @@ get_nth_image_symbol(image_id id, int32 num, char *nameBuffer, int32 *_nameLengt
status_t
_get_image_info(image_id id, image_info *info, size_t infoSize)
{
return sys_get_image_info(id, info, infoSize);
return _kern_get_image_info(id, info, infoSize);
}
status_t
_get_next_image_info(team_id team, int32 *cookie, image_info *info, size_t infoSize)
{
return sys_get_next_image_info(team, cookie, info, infoSize);
return _kern_get_next_image_info(team, cookie, info, infoSize);
}

View File

@ -116,15 +116,15 @@ SYSCALL1(_kern_kill_team, 39)
SYSCALL0(_kern_get_current_team, 40)
/* image calls */
SYSCALL2(sys_register_image, 114)
SYSCALL1(sys_unregister_image, 115)
SYSCALL3(sys_get_image_info, 116)
SYSCALL4(sys_get_next_image_info, 117)
SYSCALL2(_kern_register_image, 114)
SYSCALL1(_kern_unregister_image, 115)
SYSCALL3(_kern_get_image_info, 116)
SYSCALL4(_kern_get_next_image_info, 117)
/* node monitor calls */
SYSCALL6(sys_start_watching, 118)
SYSCALL6(sys_stop_watching, 119)
SYSCALL2(sys_stop_notifying, 120)
SYSCALL6(_kern_start_watching, 118)
SYSCALL6(_kern_stop_watching, 119)
SYSCALL2(_kern_stop_notifying, 120)
/* time calls */
SYSCALL1(_kern_set_real_time_clock, 138)