Changeset 263
- Timestamp:
- Dec 10, 2009, 9:28:09 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r262 r263 3 3 * support event correlation in log monitoring module 4 4 * make sure host matching is done in a case insensitive way 5 (reported by Tracy) 6 * fix invalid use of mutex_mlock in src/sh_unix.c, function 7 sh_unix_count_mlock() (reported by Remco Landegge). 5 8 6 9 2.6.0: -
trunk/src/sh_unix.c
r253 r263 1555 1555 #include <arpa/inet.h> 1556 1556 1557 c har * sh_unix_h_name (struct hostent * host_entry)1557 const char * sh_unix_h_name (struct hostent * host_entry) 1558 1558 { 1559 1559 char ** p; … … 4859 4859 SL_ENTER(_("sh_unix_count_mlock")); 4860 4860 4861 #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK) 4861 4862 /* There's no cancellation point here, except if tracing is on 4862 4863 */ 4863 4864 SH_MUTEX_LOCK_UNSAFE(mutex_mlock); 4865 #endif 4864 4866 4865 4867 page_list = sh_page_locked; … … 4876 4878 } 4877 4879 4880 #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK) 4878 4881 SH_MUTEX_UNLOCK_UNSAFE(mutex_mlock); 4882 #endif 4879 4883 4880 4884 #ifdef WITH_TPT
Note:
See TracChangeset
for help on using the changeset viewer.