File: mlk_nocrit_unlock.c

package info (click to toggle)
fis-gtm 6.3-007-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,284 kB
  • sloc: ansic: 328,861; asm: 5,182; csh: 5,102; sh: 1,918; awk: 291; makefile: 69; sed: 13
file content (55 lines) | stat: -rw-r--r-- 2,240 bytes parent folder | download | duplicates (3)
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
/****************************************************************
 *								*
 * Copyright (c) 2001-2018 Fidelity National Information	*
 * Services, Inc. and/or its subsidiaries. All rights reserved.	*
 *								*
 *	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 "filestruct.h"
#include "mlkdef.h"
#include "mlk_unlock.h"

GBLREF	int4 		process_id;

/* This function is similar to "mlk_unlock" except that it does not get crit. So does what can be safely done
 * and leaves the rest to be done by the next guy who has crit and wants this lock. Note that this means processes
 * that are waiting on this lock might not be woken up right away but will eventually wake up in their sleep-poll wait loop.
 * But that is considered okay given the merits of this quick nocrit unlock (speedy process exit, no crit contention).
 */
void mlk_nocrit_unlock(mlk_pvtblk *p)
{
	mlk_shrblk_ptr_t	d;
	sgmnt_addrs		*csa;
#	ifdef DEBUG
	mlk_ctldata_ptr_t	ctl;
#	endif

	assert(p->pvtctl.region->dyn.addr->acc_meth != dba_usr);
	DEBUG_ONLY(ctl = p->pvtctl.ctl;)
	assert((ctl->max_blkcnt > 0) && (ctl->max_prccnt > 0) && ((ctl->subtop - ctl->subbase) > 0));
	csa = p->pvtctl.csa;
	d = p->nodptr;
	if ((d->owner == process_id) && (p->sequence == d->sequence))
	{
		d->sequence = csa->hdr->trans_hist.lock_sequence++;	/* bump sequence so waiters realize this lock is released */
		d->owner = 0;	/* Setting this marks the lock as available */
		/* Note: The key unlock operation is setting d->owner to 0. The shared sequence increment can happen
		 * before or after that. It is only a fast way to signal lock waiters of this unlock. Even if the sequence
		 * increment actually happens way after the d->owner=0 (due to out-of-order executions), the worst is the
		 * lock waiter might have waited a little more than necessary. No correctness issues.
		 */
	}
	return;
}