24ec0d73b5
- introduce new call numbers, names, and field aliases; - initialize request messages to zero for all ABI calls; - format callnr.h in the same way as com.h; - redo call tables in both servers; - remove param.h namespace pollution in the servers; - make brk(2) go to VM directly, rather than through PM; - remove obsolete BRK, UTIME, and WAIT calls; - clean up path copying routine in VFS; - move remaining system calls from libminlib to libc; - correct some errno-related mistakes in libc routines. Change-Id: I2d8ec5d061cd7e0b30c51ffd77aa72ebf84e2565
67 lines
1.1 KiB
C
67 lines
1.1 KiB
C
#define _SYSTEM 1
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#include <minix/rs.h>
|
|
|
|
#include <lib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/shm.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(shmat, _shmat)
|
|
__weak_alias(shmdt, _shmdt)
|
|
#endif
|
|
|
|
|
|
static int get_ipc_endpt(endpoint_t *pt)
|
|
{
|
|
return minix_rs_lookup("ipc", pt);
|
|
}
|
|
|
|
/* Attach shared memory segment. */
|
|
void *shmat(int shmid, const void *shmaddr, int shmflg)
|
|
{
|
|
message m;
|
|
endpoint_t ipc_pt;
|
|
int r;
|
|
|
|
if (get_ipc_endpt(&ipc_pt) != OK) {
|
|
errno = ENOSYS;
|
|
return NULL;
|
|
}
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.SHMAT_ID = shmid;
|
|
m.SHMAT_ADDR = (long) shmaddr;
|
|
m.SHMAT_FLAG = shmflg;
|
|
|
|
r = _syscall(ipc_pt, IPC_SHMAT, &m);
|
|
if (r != OK)
|
|
return (void *) -1;
|
|
return (void *) m.SHMAT_RETADDR;
|
|
}
|
|
|
|
/* Deattach shared memory segment. */
|
|
int shmdt(const void *shmaddr)
|
|
{
|
|
message m;
|
|
endpoint_t ipc_pt;
|
|
|
|
if (get_ipc_endpt(&ipc_pt) != OK) {
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
m.SHMDT_ADDR = (long) shmaddr;
|
|
|
|
return _syscall(ipc_pt, IPC_SHMDT, &m);
|
|
}
|
|
|