comparison src/protocols/oscar/faimconfig.h @ 2270:d82efea341ef

[gaim-migrate @ 2280] new libfaim. stupid bugs. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 12 Sep 2001 00:39:51 +0000
parents 933346315b9b
children
comparison
equal deleted inserted replaced
2269:7ff6170d84a0 2270:d82efea341ef
38 */ 38 */
39 #define FAIM_LOGIN_SERVER "login.oscar.aol.com" 39 #define FAIM_LOGIN_SERVER "login.oscar.aol.com"
40 #define FAIM_LOGIN_PORT 5190 40 #define FAIM_LOGIN_PORT 5190
41 41
42 /* 42 /*
43 * What type of synchronisation to use.
44 *
45 * We don't actually use threads, but can use the POSIX mutex
46 * in order to maintain thread safety. You can use the fake locking
47 * if you really don't like pthreads (which I don't) or if you don't
48 * have it.
49 *
50 * USEPTHREADS - Use POSIX mutecies
51 * USEFAKELOCKS - Use little stub spinners to help find locking bugs
52 * USENOPLOCKS - No-op out all synchro calls at compile time
53 *
54 * Default: use noplocks by default.
55 *
56 * !!!NOTE: Even with USEPTHREADS turned on, libfaim is not fully thread
57 * safe. It will still take some effort to add locking calls to
58 * the places that need them. In fact, this feature in general
59 * is in danger of being officially deprecated and removed from
60 * the code.
61 *
62 */
63 #undef FAIM_USEPTHREADS
64 #undef FAIM_USEFAKELOCKS
65 #define FAIM_USENOPLOCKS
66
67 /*
68 * Size of the SNAC caching hash. 43 * Size of the SNAC caching hash.
69 * 44 *
70 * Default: 16 45 * Default: 16
71 * 46 *
72 */ 47 */