source: trunk/src/win32k/misc/locks.asm@ 4996

Last change on this file since 4996 was 4996, checked in by bird, 25 years ago

pre-commit

File size: 454 bytes
Line 
1; $Id: locks.asm,v 1.1 2001-01-20 23:48:53 bird Exp $
2;
3; My own R/W lock implementation.
4;
5; Copyright (c) 2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
6;
7; Project Odin Software License can be found in LICENSE.TXT
8;
9
10 .486p
11
12;
13; Include files
14;
15 include devsegdf.inc
16 include locks.inc
17
18;
19; Exported symbols
20;
21 public RWLockAquireRead
22 public RWLockAquireWrite
23 public RWLockReleaseRead
24 public RWLockReleaseWrite
25
26
27
Note: See TracBrowser for help on using the repository browser.