mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
contrib
apache_logging
array
datetime
earthdistance
int8
ip_and_mac
linux
lo
mSQL-interface
miscutil
noupdate
pginterface
sequence
soundex
spi
string
unixdate
userlock
Makefile
user_locks.c
user_locks.doc
user_locks.h
user_locks.sql.in
README
doc
migration
src
COPYRIGHT
HISTORY
INSTALL
README
register.txt
13 lines
408 B
C
13 lines
408 B
C
#ifndef USER_LOCKS_H
|
|
#define USER_LOCKS_H
|
|
|
|
int user_lock(unsigned int id1, unsigned int id2, LOCKT lockt);
|
|
int user_unlock(unsigned int id1, unsigned int id2, LOCKT lockt);
|
|
int user_write_lock(unsigned int id1, unsigned int id2);
|
|
int user_write_unlock(unsigned int id1, unsigned int id2);
|
|
int user_write_lock_oid(Oid oid);
|
|
int user_write_unlock_oid(Oid oid);
|
|
int user_unlock_all(void);
|
|
|
|
#endif
|