Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / DtSearch / raima / setmm.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: setmm.c /main/2 1996/05/09 04:17:09 drk $ */
24 /*
25  *   COMPONENT_NAME: austext
26  *
27  *   FUNCTIONS: d_setmm
28  *
29  *   ORIGINS: 157
30  *
31  *   OBJECT CODE ONLY SOURCE MATERIALS
32  */
33 /*-----------------------------------------------------------------------
34    setmm.c -- db_VISTA set member to member module.
35
36    (C) Copyright 1987 by Raima Corporation.
37 -----------------------------------------------------------------------*/
38
39 /* ********************** EDIT HISTORY *******************************
40
41  SCR    DATE    INI                   DESCRIPTION
42 ----- --------- --- -----------------------------------------------------
43       04-Aug-88 RTK MULTI_TASK changes
44 */
45
46 #include <stdio.h>
47 #include "vista.h"
48 #include "dbtype.h"
49
50 /* Set current member to current member
51 */
52 d_setmm(sett, sets TASK_PARM DBN_PARM)
53 int sett;   /* set table entry number of target member */
54 int sets;   /* set table entry number of source member */
55 TASK_DECL
56 DBN_DECL    /* database number */
57 {
58    int cmtype; /* current member type */
59    register int mem;
60    SET_ENTRY FAR *set_ptr;
61    register MEMBER_ENTRY FAR *mem_ptr;
62    int memtot;
63
64    DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO));
65
66    if ((d_cmtype(sets, &cmtype TASK_PARM DBN_PARM) != S_OKAY) ||
67        (nset_check(sett, &sett, (SET_ENTRY FAR * FAR *)&set_ptr) != S_OKAY))
68       RETURN( db_status );
69
70    cmtype += NUM2INT(-RECMARK, rt_offset);
71    sets += NUM2INT(-SETMARK, st_offset);
72
73    for (mem = set_ptr->st_members, memtot = mem + set_ptr->st_memtot,
74                                                 mem_ptr = &member_table[mem];
75         mem < memtot;
76         ++mem, ++mem_ptr) {
77       if (mem_ptr->mt_record == cmtype)
78          RETURN( r_smem(&curr_mem[sets], sett) );
79    }
80    RETURN( dberr( S_INVMEM ) );
81 }
82 /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin setmm.c */