diff options
author | midipix <writeonce@midipix.org> | 2019-10-28 04:19:56 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-11-20 03:00:40 +0000 |
commit | c42bd5f05e744e0d863d0b10552d490377e06c63 (patch) | |
tree | c9b2af5f50d604406465b0e71efa5152ef22d404 /src | |
parent | b1665b0ec48cce7b5fd0029da92f67314eb5fa4c (diff) | |
download | sltdl-c42bd5f05e744e0d863d0b10552d490377e06c63.tar.bz2 sltdl-c42bd5f05e744e0d863d0b10552d490377e06c63.tar.xz |
internals: added lt_slock(), lt_sunlock().
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lt_core.c | 15 | ||||
-rw-r--r-- | src/internal/sltdl_core.h | 7 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/core/lt_core.c b/src/core/lt_core.c index b0c3952..df9f58f 100644 --- a/src/core/lt_core.c +++ b/src/core/lt_core.c @@ -38,3 +38,18 @@ int lt_dlexit(void) return 0; } + +void lt_slock(void) +{ + int locked; + + do { + locked = pthread_mutex_lock(<_lock); + } while (locked); +} + +int lt_sunlock(int ret) +{ + pthread_mutex_unlock(<_lock); + return ret; +} diff --git a/src/internal/sltdl_core.h b/src/internal/sltdl_core.h new file mode 100644 index 0000000..f74542e --- /dev/null +++ b/src/internal/sltdl_core.h @@ -0,0 +1,7 @@ +#ifndef SLTDL_CORE_H +#define SLTDL_CORE_H + +void lt_slock(void); +int lt_sunlock(int); + +#endif |