s3:libsmb: s/struct event_context/struct tevent_context
[Samba/gebeck_regimport.git] / source3 / libsmb / libsmb_thread_posix.c
blob8c8299dd7f0d54b18e23a008dd6fa90cdfdfe833
1 /*
2 Unix SMB/Netbios implementation.
3 SMB client library implementation
4 Copyright (C) Derrell Lipman 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #ifdef HAVE_PTHREAD_H
23 #include <pthread.h>
24 #endif
25 #include "libsmbclient.h"
26 #include "libsmb_internal.h"
29 /* Get rid of the malloc checker */
30 #ifdef malloc
31 #undef malloc
32 #endif
35 * Define the functions which implement the pthread interface
37 SMB_THREADS_DEF_PTHREAD_IMPLEMENTATION(tf);
40 /**
41 * Initialize for threads using the Posix Threads (pthread)
42 * implementation. This is a built-in implementation, avoiding the need to
43 * implement the component functions of the thread interface. If this function
44 * is used, it is not necessary to call smbc_thread_impl().
46 * @return {void}
48 void
49 smbc_thread_posix(void)
51 smb_thread_set_functions(&tf);