1 /* _taskcall() is the same as _syscall() except it returns negative error
2 * codes directly and not in errno. This is a better interface for MM and
7 #include <minix/syslib.h>
9 PUBLIC
int _taskcall(who
, syscallnr
, msgptr
)
12 register message
*msgptr
;
16 msgptr
->m_type
= syscallnr
;
17 status
= _sendrec(who
, msgptr
);
18 if (status
!= 0) return(status
);
19 return(msgptr
->m_type
);