File:  [MW Coherent from dump] / coherent / b / kernel / i386 / shmemul.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:37 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/* Copyright (c) Bureau d'Etudes Ciaran O'Donnell,1987,1990,1991 */
#define	_SHMAT	0
#define	_SHMCTL	1
#define	_SHMDT	2
#define	_SHMGET	3

shmat(shmid, shmaddr, shmflg)
{
	return _shmsys(_SHMAT, shmid, shmaddr, shmflg);
}

shmctl(shmid, cmd, buf)
{
	return _shmsys(_SHMCTL, shmid, cmd, buf);
}

shmdt(shmaddr)
{
	return _shmsys(_SHMDT, shmaddr);
}

shmget(key, size, shmflg)
{
	return _shmsys(_SHMGET, key, size, shmflg);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.