[BACK]Return to osf1_sysv_ipc.c CVS log [TXT][DIR] Up to [local] / sys / compat / osf1

Annotation of sys/compat/osf1/osf1_sysv_ipc.c, Revision 1.1.1.1

1.1       nbrk        1: /* $OpenBSD: osf1_sysv_ipc.c,v 1.1 2000/08/04 15:47:55 ericj Exp $ */
                      2: /* $NetBSD: osf1_sysv_ipc.c,v 1.1 1999/05/04 04:59:21 cgd Exp $ */
                      3:
                      4: /*
                      5:  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
                      6:  *
                      7:  * Redistribution and use in source and binary forms, with or without
                      8:  * modification, are permitted provided that the following conditions
                      9:  * are met:
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. Redistributions in binary form must reproduce the above copyright
                     13:  *    notice, this list of conditions and the following disclaimer in the
                     14:  *    documentation and/or other materials provided with the distribution.
                     15:  * 3. All advertising materials mentioning features or use of this software
                     16:  *    must display the following acknowledgement:
                     17:  *      This product includes software developed by Christopher G. Demetriou
                     18:  *     for the NetBSD Project.
                     19:  * 4. The name of the author may not be used to endorse or promote products
                     20:  *    derived from this software without specific prior written permission
                     21:  *
                     22:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     23:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     24:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     25:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     26:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     27:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     28:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     29:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     30:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     31:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     32:  */
                     33:
                     34: #include <sys/param.h>
                     35: #include <sys/systm.h>
                     36: #include <sys/namei.h>
                     37: #include <sys/proc.h>
                     38: #include <sys/file.h>
                     39: #include <sys/mount.h>
                     40: #include <sys/syscallargs.h>
                     41:
                     42: #include <compat/osf1/osf1.h>
                     43: #include <compat/osf1/osf1_syscallargs.h>
                     44: #include <compat/osf1/osf1_cvt.h>
                     45:
                     46: int
                     47: osf1_sys_shmat(p, v, retval)
                     48:        struct proc *p;
                     49:        void *v;
                     50:        register_t *retval;
                     51: {
                     52:
                     53:        /* XXX */
                     54:        return (ENOSYS);
                     55: }
                     56:
                     57: int
                     58: osf1_sys_shmctl(p, v, retval)
                     59:        struct proc *p;
                     60:        void *v;
                     61:        register_t *retval;
                     62: {
                     63:
                     64:        /* XXX */
                     65:        return (ENOSYS);
                     66: }
                     67:
                     68: int
                     69: osf1_sys_shmdt(p, v, retval)
                     70:        struct proc *p;
                     71:        void *v;
                     72:        register_t *retval;
                     73: {
                     74:
                     75:        /* XXX */
                     76:        return (ENOSYS);
                     77: }
                     78:
                     79: int
                     80: osf1_sys_shmget(p, v, retval)
                     81:        struct proc *p;
                     82:        void *v;
                     83:        register_t *retval;
                     84: {
                     85:
                     86:        /* XXX */
                     87:        return (ENOSYS);
                     88: }

CVSweb