3f38115c7b
. define _MINIX_SYSTEM for all system code from minix.service.mk . hide some system-level declarations and definitions behind _MINIX_SYSTEM to cleanly fix host tool build problems on Minix (such as: NONE being defined and paddr_t being used but not declared) . the similar definition _SYSTEM is unsuitable as it changes the values of errno definitions Change-Id: I407de79e2575115243a074b16e79546a279cfa3e
41 lines
728 B
C
41 lines
728 B
C
#define _SYSTEM 1
|
|
#define _MINIX_SYSTEM 1
|
|
|
|
#include <sys/cdefs.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;
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.RS_NAME = (char *) __UNCONST(name);
|
|
m.RS_NAME_LEN = len_key;
|
|
|
|
if (_syscall(RS_PROC_NR, RS_LOOKUP, &m) != -1) {
|
|
*value = m.RS_ENDPOINT;
|
|
return OK;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|