2011-02-17 18:11:09 +01:00
|
|
|
#define _SYSTEM 1
|
2013-02-25 12:43:15 +01:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
|
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
#include <minix/config.h>
|
|
|
|
#include <minix/ipc.h>
|
|
|
|
#include <minix/endpoint.h>
|
|
|
|
#include <minix/sysutil.h>
|
|
|
|
#include <minix/syslib.h>
|
|
|
|
#include <minix/const.h>
|
|
|
|
#include <minix/type.h>
|
|
|
|
#include <minix/ds.h>
|
|
|
|
#include <minix/rs.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <lib.h>
|
|
|
|
|
|
|
|
int minix_rs_lookup(const char *name, endpoint_t *value)
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
size_t len_key;
|
|
|
|
|
|
|
|
len_key = strlen(name)+1;
|
|
|
|
|
2011-11-28 11:07:55 +01:00
|
|
|
m.RS_NAME = (char *) __UNCONST(name);
|
2011-02-17 18:11:09 +01:00
|
|
|
m.RS_NAME_LEN = len_key;
|
|
|
|
|
|
|
|
if (_syscall(RS_PROC_NR, RS_LOOKUP, &m) != -1) {
|
|
|
|
*value = m.RS_ENDPOINT;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|