- Jan 11, 1999
-
-
Kurt Zeilenga authored
creating them detached. This hopefully will reduce problems on draft4 pthread implementations related to creating detached threads (which is _np under draft4) on some platforms without causing problems with other thread implementations.
-
Kurt Zeilenga authored
of a busy wait and allow the pthread_yield within the loop to be removed. This was the only pthread_yield which was necessary when usng non-preemptive threads. As such, the configure.in sched_yield/pthread_yield missing error can be removed from configure.in. If explicit yield function is missing, just provide a no-op replacement. Moved declaration of various slapd globals from main.c to init.c so they can be shared with ldbm tools.
-
- Jan 10, 1999
-
-
Kurt Zeilenga authored
make depend, make tests, and make install all work when build directory is not the $srcdir. Also modified library handling such that -lpthread more likely to be last. WARNING: new orderring requires use of LDFLAGS to set global loader options such as -L/usr/local/lib. If you put this in LIBS, some libraries may not be found a link time. Likely broke Kerberos/LDAPD support. Don't have those in my testbed.
-
Kurt Zeilenga authored
rename 'struct conn' to 'struct slap_conn' rename op_function to slap_op_func for functions add/delete/free This change is need to avoid clashing with perl internals.
-
- Jan 09, 1999
-
-
Kurt Zeilenga authored
-
- Jan 08, 1999
-
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Kurt Spanier authored
-
Kurt Spanier authored
also description of .pid and .args files.
-
- Jan 07, 1999
-
-
Kurt Zeilenga authored
Removed old defines.
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Kurt Spanier authored
-
Kurt Spanier authored
-
Kurt Zeilenga authored
pass STRING_UNKNOWN if !client_name pass STRING_UNKNOWN if !client_addr
-
Kurt Zeilenga authored
Unwrap ldbm_datum_init()
-
Kurt Zeilenga authored
parent's "children" attribute. Write lock parent to prevent multiple clients making conflicting operations concurrently. If parent doesn't exist (ie: is backend root), acquire a writer lock (a simple mutex) on the "root." Use -DSLAPD_CHILD_MODIFICATION_WITH_ENTRY_ACL to use the child's "entry" acl for modrdn/delete operations.
-
- Jan 06, 1999
-
-
Kurt Zeilenga authored
use this everywhere... but that's for another day.
-
- Jan 05, 1999
-
-
Kurt Spanier authored
- slapd's pid/args file names are based on the servers binary file names, providing for multiple servers beeing run on one host. - slapd supports the -l command line parameter for selection of a syslog LOCAL user (-lLOCAL0 .. -lLOCAL7) - db_appinit() is called during first ldbm_open() in DB 2.x to initialize DB debugging features (good to find bugs in the DB code :-) - a patch for a non-initialized variable in DB's 2.x db_open is provided.
-
- Jan 03, 1999
-
-
Kurt Zeilenga authored
-
- Jan 02, 1999
-
-
Kurt Zeilenga authored
one preprocessor macro instead of two. Ran aclocal, autoconf, autoheader to update derived files. Modify util-int.c to use CTIME_R_NARGS define and fallback to ctime() if not set. Made LDAP_API_FEATURE_X_OPENLDAP_REENTRANT dependent upon result.
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Bart Hartgers authored
Moved the ctime_r number of arguments check to the right file.
-
Bart Hartgers authored
Teached autoconf to figure out how may arguments ctime_r expects. Updated util-int.c to use this information.
-
- Jan 01, 1999
-
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
- Dec 30, 1998
-
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
-
Dave Storey authored
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
Resolved deadlock by passing target entry to be_group and using this if dn same as bdn. It might actually be safer to check entry ids instead of dns. Resolved bogus add to cache after failed acl check by deferring cache add until after parent/acl checks have successful been completed. Eliminated race condition caused by concurrent adds of same dn by adding 'li_add_mutex' around the critical section of code (most of ldbm_back_add). This code is preliminary and still needs significant testing.
-
Kurt Zeilenga authored
Seems that calling pthread_exit() in the main (and only active) thread does not cause the whole process to exit. Very odd. Anyways, as we want to whole process to exit, we should just exit after joining with our other threads. I've also removed dead code for detaching threads we join with.
-
- Dec 29, 1998
-
-
Kurt Zeilenga authored
-
Kurt Zeilenga authored
mutex declaration should be moved from slapd/main.c to slapd/init.c so we don't have ripple changes through slapd/tools.
-
Kurt Spanier authored
Introduction of ldbm_datum_init(). Patch for non-NULL pointer test befor call to ldbm_datum_free().
-
Kurt Zeilenga authored
-