diff options
author | Derrell Lipman <derrell@dworkin.(none)> | 2009-05-10 22:31:37 -0400 |
---|---|---|
committer | Derrell Lipman <derrell@dworkin.(none)> | 2009-05-10 22:45:12 -0400 |
commit | db69ebcbcebbd3882d2eee7df8de15c3dc9c309b (patch) | |
tree | cbc34b451731d7682c398fe5c5205162d9adfef1 /source3/Makefile.in | |
parent | 418a2eeae8912d14e32b0119232b897e78221037 (diff) | |
download | samba-db69ebcbcebbd3882d2eee7df8de15c3dc9c309b.tar.gz samba-db69ebcbcebbd3882d2eee7df8de15c3dc9c309b.tar.bz2 samba-db69ebcbcebbd3882d2eee7df8de15c3dc9c309b.zip |
Provide a libsmbclient interface for programs requiring threads
- This adds two functions: smbc_thread_posix() which provides access to the
internal threading implementation using pthread; and smbc_thread_impl()
where the user provides each of the functions required by Samba, to give
access to the thread implementation's native capabilities.
Derrell
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 40a204557f..190560a737 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -873,7 +873,9 @@ LIBSMBCLIENT_OBJ0 = \ libsmb/libsmb_server.o \ libsmb/libsmb_stat.o \ libsmb/libsmb_xattr.o \ - libsmb/libsmb_setget.o + libsmb/libsmb_setget.o \ + libsmb/libsmb_thread_impl.o \ + libsmb/libsmb_thread_posix.o LIBSMBCLIENT_OBJ1 = $(LIBSMBCLIENT_OBJ0) \ $(PARAM_OBJ) $(LIB_NONSMBD_OBJ) \ |