35 lines
1013 B
C
35 lines
1013 B
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001 Sanchez Computer Associates, Inc. *
|
|
* *
|
|
* This source code contains the intellectual property *
|
|
* of its copyright holder(s), and is made available *
|
|
* under a license. If you do not know the terms of *
|
|
* the license, please stop and do not read further. *
|
|
* *
|
|
****************************************************************/
|
|
|
|
#include "mdef.h"
|
|
|
|
#include "locklits.h"
|
|
#include "op.h"
|
|
|
|
/*
|
|
* -----------------------------------------------
|
|
* Arguments:
|
|
* timeout - max. time to wait for locks before giving up
|
|
*
|
|
* Return:
|
|
* 1 - if not timeout specified
|
|
* if timeout specified:
|
|
* != 0 - all the locks int the list obtained, or
|
|
* 0 - blocked
|
|
* The return result is suited to be placed directly into
|
|
* the $T variable by the caller if timeout is specified.
|
|
* -----------------------------------------------
|
|
*/
|
|
int op_incrlock(int timeout)
|
|
{
|
|
return (op_lock2(timeout,INCREMENTAL));
|
|
}
|