Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / DtSearch / raima / utscm.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: utscm.c /main/2 1996/05/09 04:20:56 drk $ */
24 /*
25  *   COMPONENT_NAME: austext
26  *
27  *   FUNCTIONS: d_utscm
28  *
29  *   ORIGINS: 157
30  *
31  *   OBJECT CODE ONLY SOURCE MATERIALS
32  */
33 /*-----------------------------------------------------------------------
34    utscm.c -- db_VISTA current member update timestamp get 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
51 #ifndef  NO_TIMESTAMP
52 /* Get update timestamp of current member
53 */
54 d_utscm(set, timestamp TASK_PARM DBN_PARM)
55 int set;
56 ULONG FAR *timestamp;
57 TASK_DECL
58 DBN_DECL
59 {
60    INT rec;
61    char FAR *rptr;
62    SET_ENTRY FAR *set_ptr;
63
64    DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO));
65
66    if (nset_check(set, &set, (SET_ENTRY FAR * FAR *)&set_ptr) != S_OKAY)
67       RETURN( db_status );
68
69    /* make sure we have a current member */
70    if ( ! curr_mem[set] )
71       RETURN( dberr(S_NOCM) );
72
73    /* read current member */
74    if ( dio_read( curr_mem[set], (char FAR * FAR *)&rptr , NOPGHOLD) != S_OKAY )
75       RETURN( db_status );
76
77    /* get record id */
78    bytecpy(&rec, rptr, sizeof(INT));
79    if ( rec >= 0 ) {
80       rec &= ~RLBMASK; /* mask off rlb */
81 #ifndef  ONE_DB
82       rec += curr_db_table->rt_offset;
83 #endif
84       if ( record_table[rec].rt_flags & TIMESTAMPED )
85          bytecpy(timestamp, rptr + RECUPTIME, sizeof(ULONG));
86       else
87          *timestamp = 0L;
88       db_status = S_OKAY;
89    }
90    else
91       db_status = S_DELETED;
92
93    RETURN( db_status = S_OKAY );
94 }
95 #endif
96 /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin utscm.c */