From 067d58738d464faed5044454b77e55ad432a54cd Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 1 Nov 2004 23:45:40 +0000 Subject: r3446: created include/system/iconv.h and include/system/shmem.h --- source/torture/torture_util.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'source/torture/torture_util.c') diff --git a/source/torture/torture_util.c b/source/torture/torture_util.c index 8565a4d7d8d..41e616b5be9 100644 --- a/source/torture/torture_util.c +++ b/source/torture/torture_util.c @@ -20,6 +20,7 @@ #include "includes.h" #include "libcli/raw/libcliraw.h" +#include "system/shmem.h" static struct timeval tp1,tp2; @@ -167,15 +168,6 @@ void *shm_setup(int size) int shmid; void *ret; -/* NetBSD doesn't have these */ -#ifndef SHM_R -#define SHM_R 0400 -#endif - -#ifndef SHM_W -#define SHM_W 0200 -#endif - shmid = shmget(IPC_PRIVATE, size, SHM_R | SHM_W); if (shmid == -1) { printf("can't get shared memory\n"); -- cgit