minix/lib/libsys/taskcall.c

28 lines
560 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/* _taskcall() is the same as _syscall() except it returns negative error
* codes directly and not in errno. This is a better interface for PM and
* VFS.
2005-04-21 16:53:53 +02:00
*/
#include <lib.h>
#include <minix/syslib.h>
int _sendcall(endpoint_t who, int type, message *msgptr)
{
msgptr->m_type = type;
return send(who, msgptr);
}
2012-03-25 20:25:53 +02:00
int _taskcall(who, syscallnr, msgptr)
endpoint_t who;
2005-04-21 16:53:53 +02:00
int syscallnr;
register message *msgptr;
{
int status;
msgptr->m_type = syscallnr;
status = sendrec(who, msgptr);
2005-04-21 16:53:53 +02:00
if (status != 0) return(status);
return(msgptr->m_type);
}