/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
#pragma ident "%Z%%M% %I% %E% SMI"
#include "lint.h"
#include <sys/ipc_impl.h>
#include <sys/sem_impl.h>
#include <stdarg.h>
#include <errno.h>
union semun {
int val;
};
/*
* The kernel implementation of semsys expects an argument containing the
* value of the semun argument, but the Sparc compiler passes a pointer
* to it, since it is a union. So, we convert here and pass the value,
* but to keep the naive user from being penalized for the counterintuitive
* behaviour of the Sparc compiler, we ignore the union if it will not be
* used by the system call (to protect the caller from SIGSEGVs, e.g.
* semctl(semid, semnum, cmd, NULL); which would otherwise always result
* in a segmentation violation). We do this partly for consistency, since
* the ICL port did it. This all works just fine for the Intel compiler,
* which actually does pass the union by value.
*/
int
{
switch (cmd) {
case SETVAL:
break;
case GETALL:
case SETALL:
break;
case IPC_STAT:
case IPC_SET:
break;
case IPC_SET64:
case IPC_STAT64:
(void) __set_errno(EINVAL);
return (-1);
default:
arg = 0;
break;
}
}
int
{
(void) __set_errno(EINVAL);
return (-1);
}
}
int
{
}
int
{
}
int
{
}
int
const timespec_t *timeout)
{
timeout));
}