summaryrefslogtreecommitdiff
path: root/source3/libsmb/libsmb_thread_posix.c
AgeCommit message (Collapse)AuthorFilesLines
2010-01-26s3: fix detection and flags for using pthreadBjörn Jacke1-0/+4
I hope this fixes the build on Tru64, IRIX and maybe bug #6983
2009-07-15s3:libsmb: we need to include "includes.h" as first header to let code build ↵Stefan Metzmacher1-1/+1
on all platforms This should fix the Tru64 build. metze
2009-05-10Provide a libsmbclient interface for programs requiring threadsDerrell Lipman1-0/+49
- 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