878ba523ac
This library includes various random and minix-specific functions included in the Minix libc. Most of them should be part of libsys, and in general it would be nice to extinguish this library over time.
24 lines
319 B
C
24 lines
319 B
C
/* getdma.c
|
|
*/
|
|
|
|
#include <lib.h>
|
|
#include <unistd.h>
|
|
#include <stdarg.h>
|
|
|
|
int getdma(procp, basep, sizep)
|
|
endpoint_t *procp;
|
|
phys_bytes *basep;
|
|
phys_bytes *sizep;
|
|
{
|
|
int r;
|
|
message m;
|
|
|
|
r= _syscall(PM_PROC_NR, GETDMA, &m);
|
|
if (r == 0)
|
|
{
|
|
*procp= m.m2_i1;
|
|
*basep= m.m2_l1;
|
|
*sizep= m.m2_l2;
|
|
}
|
|
return r;
|
|
}
|