ipcs.c (c3aac50f284c6cca5b4f2eb46aaa13812cb8b630) | ipcs.c (c447342094276b4d604449bb776063c7b88c4992) |
---|---|
1/* 2 * Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 29 unchanged lines hidden (view full) --- 38#include <stdio.h> 39#include <stdlib.h> 40#include <unistd.h> 41 42#include <sys/types.h> 43#include <sys/param.h> 44#include <sys/time.h> 45#include <sys/proc.h> | 1/* 2 * Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 29 unchanged lines hidden (view full) --- 38#include <stdio.h> 39#include <stdlib.h> 40#include <unistd.h> 41 42#include <sys/types.h> 43#include <sys/param.h> 44#include <sys/time.h> 45#include <sys/proc.h> |
46#define KERNEL | 46#define _KERNEL |
47#include <sys/ipc.h> 48#include <sys/sem.h> 49#include <sys/shm.h> 50#include <sys/msg.h> 51 52struct semid_ds *sema; 53struct seminfo seminfo; 54struct msginfo msginfo; --- 440 unchanged lines hidden --- | 47#include <sys/ipc.h> 48#include <sys/sem.h> 49#include <sys/shm.h> 50#include <sys/msg.h> 51 52struct semid_ds *sema; 53struct seminfo seminfo; 54struct msginfo msginfo; --- 440 unchanged lines hidden --- |