diff options
author | Marc G. Fournier | 1998-08-30 19:37:51 +0000 |
---|---|---|
committer | Marc G. Fournier | 1998-08-30 19:37:51 +0000 |
commit | eec4c7366f04aa258bb8b7fcd2bbc90eda1cc271 (patch) | |
tree | dfb6b70845221063cc0515177b993713595ff69c /contrib/userlock/user_locks.h | |
parent | 3067ac8e77369c1b41195b4d90e2ff2c0b23bc7f (diff) |
From: Massimo Dal Zotto <[email protected]>
Here is a tar file the new directories, which substitute the old ones
in contrib. Please remove the old directories array, datetime, miscutil,
string and userlock before unpacking the tar file in contrib.
Note that as the modules are now installed in lib/modules I install all
my sql code in lib/sql. In my opinion also the other contributors should
follow these rules.
Diffstat (limited to 'contrib/userlock/user_locks.h')
-rw-r--r-- | contrib/userlock/user_locks.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/contrib/userlock/user_locks.h b/contrib/userlock/user_locks.h index 7f315564031..0a8f55cbdd8 100644 --- a/contrib/userlock/user_locks.h +++ b/contrib/userlock/user_locks.h @@ -1,8 +1,8 @@ #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_lock(unsigned int id1, unsigned int id2, LOCKMODE lockmode); +int user_unlock(unsigned int id1, unsigned int id2, LOCKMODE lockmode); 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); @@ -10,3 +10,11 @@ int user_write_unlock_oid(Oid oid); int user_unlock_all(void); #endif + +/* + * Local variables: + * tab-width: 4 + * c-indent-level: 4 + * c-basic-offset: 4 + * End: + */ |