haiku/src/system/libroot/os/port.c
Axel Dörfler 5af32e7526 Renamed src/kernel to src/system.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12359 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-04-13 13:06:35 +00:00

113 lines
1.9 KiB
C

/*
** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#include <OS.h>
#include "syscalls.h"
port_id
create_port(int32 capacity, const char *name)
{
return _kern_create_port(capacity, name);
}
port_id
find_port(const char *name)
{
return _kern_find_port(name);
}
status_t
write_port(port_id port, int32 code, const void *buffer, size_t bufferSize)
{
return _kern_write_port_etc(port, code, buffer, bufferSize, 0, 0);
}
ssize_t
read_port(port_id port, int32 *code, void *buffer, size_t bufferSize)
{
return _kern_read_port_etc(port, code, buffer, bufferSize, 0, 0);
}
status_t
write_port_etc(port_id port, int32 code, const void *buffer, size_t bufferSize,
uint32 flags, bigtime_t timeout)
{
return _kern_write_port_etc(port, code, buffer, bufferSize, flags, timeout);
}
ssize_t
read_port_etc(port_id port, int32 *code, void *buffer, size_t bufferSize,
uint32 flags, bigtime_t timeout)
{
return _kern_read_port_etc(port, code, buffer, bufferSize, flags, timeout);
}
ssize_t
port_buffer_size(port_id port)
{
return _kern_port_buffer_size_etc(port, 0, 0);
}
ssize_t
port_buffer_size_etc(port_id port, uint32 flags, bigtime_t timeout)
{
return _kern_port_buffer_size_etc(port, flags, timeout);
}
ssize_t
port_count(port_id port)
{
return _kern_port_count(port);
}
status_t
set_port_owner(port_id port, team_id team)
{
return _kern_set_port_owner(port, team);
}
status_t
close_port(port_id port)
{
return _kern_close_port(port);
}
status_t
delete_port(port_id port)
{
return _kern_delete_port(port);
}
status_t
_get_next_port_info(team_id team, int32 *cookie, port_info *info, size_t size)
{
// size is not yet used, but may, if port_info changes
(void)size;
return _kern_get_next_port_info(team, cookie, info);
}
status_t
_get_port_info(port_id port, port_info *info, size_t size)
{
return _kern_get_port_info(port, info);
}