File: op_unlock.c

package info (click to toggle)
fis-gtm 6.2-000-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,784 kB
  • ctags: 42,554
  • sloc: ansic: 358,483; asm: 4,847; csh: 4,574; sh: 2,261; awk: 200; makefile: 86; sed: 13
file content (64 lines) | stat: -rw-r--r-- 1,467 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/****************************************************************
 *								*
 *	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 "gdsroot.h"
#include "gtm_facility.h"
#include "fileinfo.h"
#include "gdsbt.h"
#include "gdsfhead.h"
#include "mlkdef.h"
#include "tp_frame.h"
#include "op.h"
#include "mlk_pvtblk_delete.h"
#include "mlk_unlock.h"
#include "gvcmx.h"

GBLREF boolean_t	gtcm_connection;
GBLREF unsigned char	cm_action;
GBLREF mlk_pvtblk	*mlk_pvt_root;
GBLREF tp_frame		*tp_pointer;

void op_unlock(void)
{
	mlk_pvtblk **prior;
	error_def(ERR_TPLOCK);

	/* if there were any old locks before TSTART, they can't be  unlocked */
	if (mlk_pvt_root && tp_pointer && tp_pointer->old_locks)
		rts_error(VARLSTCNT(1) ERR_TPLOCK);

	/* must deal with cm */
	if (gtcm_connection)
	{
		cm_action = 0;
		gvcmx_unlock(cm_action, FALSE, FALSE);
	}

	for (prior = &mlk_pvt_root ; *prior ; )
	{
		if (!(*prior)->granted)
		{
			mlk_pvtblk_delete(prior);
		}
		else if ((*prior)->zalloc)
		{
			(*prior)->level = 0;
			prior = &((*prior)->next);
		} else
		{
			mlk_unlock(*prior);
			mlk_pvtblk_delete(prior);
		}
	}
	return;
}