/* * CDE - Common Desktop Environment * * Copyright (c) 1993-2012, The Open Group. All rights reserved. * * These libraries and programs are free software; you can * redistribute them and/or modify them under the terms of the GNU * Lesser General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) * any later version. * * These libraries and programs are distributed in the hope that * they will be useful, but WITHOUT ANY WARRANTY; without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU Lesser General Public License for more * details. * * You should have received a copy of the GNU Lesser General Public * License along with these libraries and programs; if not, write * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth * Floor, Boston, MA 02110-1301 USA */ /* $XConsortium: findfm.c /main/2 1996/05/09 04:06:14 drk $ */ /* * COMPONENT_NAME: austext * * FUNCTIONS: d_findfm * * ORIGINS: 157 * * OBJECT CODE ONLY SOURCE MATERIALS */ /*----------------------------------------------------------------------- findfm.c -- db_VISTA find first member module (C) Copyright 1987 by Raima Corp. -----------------------------------------------------------------------*/ /* ********************** EDIT HISTORY ******************************* SCR DATE INI DESCRIPTION ----- --------- --- ----------------------------------------------------- 04-Aug-88 RTK MULTI_TASK changes */ #include #include "vista.h" #include "dbtype.h" /* Find first member of set */ int d_findfm(int nset, int dbn) { char setp[SETPSIZE]; DB_ADDR mem; char *recp; int set; SET_ENTRY *set_ptr; DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO)); if (nset_check(nset, &set, (SET_ENTRY * *)&set_ptr) != S_OKAY) RETURN( db_status ); /* make sure we have a current owner */ if ( ! curr_own[set] ) RETURN( dberr(S_NOCO) ); /* read current owner of set */ if ( dio_read(curr_own[set], (char * *)&recp, NOPGHOLD) != S_OKAY ) RETURN( db_status ); /* get set pointer from record */ if ( r_gset(set, recp, setp) != S_OKAY ) RETURN( db_status == S_INVOWN? dberr(S_SYSERR): db_status ); /* extract address of first member */ bytecpy(&mem, setp+SP_FIRST, DB_ADDR_SIZE); /* set current record and member */ curr_mem[set] = mem; if ( ! mem ) /* end of set if no first member */ RETURN( db_status = S_EOS ); curr_rec = mem; RETURN( db_status = S_OKAY ); } /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin findfm.c */