Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax
In directory usw-pr-cvs1:/tmp/cvs-serv29425
Added Files:
ipc.h
Log Message:
Based on s390
--- NEW FILE ---
/*
* $Id: ipc.h,v 1.1 2001/01/23 23:47:13 kenn Exp $
*
* VAX version
*
* Derived from "include/asm-s390/ipc.h"
*/
#ifndef __VAX_IPC_H__
#define __VAX_IPC_H__
#define SEMOP 1
#define SEMGET 2
#define SEMCTL 3
#define MSGSND 11
#define MSGRCV 12
#define MSGGET 13
#define MSGCTL 14
#define SHMAT 21
#define SHMDT 22
#define SHMGET 23
#define SHMCTL 24
/* Used by the DIPC package, try and avoid reusing it */
#define DIPC 25
#endif
|