]> git.sur5r.net Git - bacula/bacula/commitdiff
For Solaris 9 and higher there is no need to call thr_setconcurrency anymore.
authorMarco van Wieringen <mvw@planets.elm.net>
Sat, 2 Apr 2011 20:48:00 +0000 (22:48 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:44:32 +0000 (14:44 +0200)
See the manual page:

These functions are obsolete and maintained for compatibility
only. The thr_setconcurrency() function updates the
desired concurrency level that libthread maintains for the
calling  process. This value does not affect the behavior of
the calling process.

bacula/autoconf/configure.in
bacula/src/baconfig.h

index df417d386dbbef8c2accd3f6ca135d754bc31aa9..1a5e861e355552ead19fdc3f4481ce82feb47bb8 100644 (file)
@@ -3172,9 +3172,17 @@ solaris)
        platforms/solaris/bacula-fd \
        platforms/solaris/bacula-sd \
        platforms/solaris/bacula-dir"
-   if test x$DISTVER = x5.6 ; then
-       AC_DEFINE(HAVE_OLD_SOCKOPT)
-   fi
+   case ${DISTVER} in
+   5.5|5.6)
+      AC_DEFINE(HAVE_OLD_SOCKOPT)
+      AC_DEFINE(USE_THR_SETCONCURRENCY)
+      ;;
+   5.7|5.8)
+      AC_DEFINE(USE_THR_SETCONCURRENCY)
+      ;;
+   *)
+      ;;
+   esac
    LIBS="$LIBS -lresolv -lrt"
   ;;
 suse)
index f9f7807ec1b8e9e1a6c50bddfb9234d38bb93360..67be788d6a59aabf95bad27f646311c28d3b24b3 100644 (file)
@@ -507,35 +507,37 @@ int  m_msg(const char *file, int line, POOLMEM *&pool_buf, const char *fmt, ...)
  *               OS Dependent defines
  * ============================================================= 
  */
-
-#ifndef HAVE_FSEEKO
-/* Bad news. This OS cannot handle 64 bit fseeks and ftells */
-#define fseeko fseek
-#define ftello ftell
-#endif
-
 #if defined (__digital__) && defined (__unix__)
 /* Tru64 - it does have fseeko and ftello , but since ftell/fseek are also 64 bit */
 /* take this 'shortcut' */
 #define fseeko fseek
 #define ftello ftell
+#else
+#ifndef HAVE_FSEEKO
+/* Bad news. This OS cannot handle 64 bit fseeks and ftells */
+#define fseeko fseek
+#define ftello ftell
+#endif
 #endif
-
 
 #ifdef HAVE_SUN_OS
-   /**
-    * On Solaris 2.5, threads are not timesliced by default, so we need to
-    * explictly increase the conncurrency level.
-    */
+/*
+ * On Solaris 2.5/2.6/7 and 8, threads are not timesliced by default,
+ * so we need to explictly increase the conncurrency level.
+ */
+#ifdef USE_THR_SETCONCURRENCY
 #include <thread.h>
 #define set_thread_concurrency(x)  thr_setconcurrency(x)
 extern int thr_setconcurrency(int);
 #define SunOS 1
-
 #else
+#define set_thread_concurrency(x)
+#endif
 
-
-/** Not needed on most systems */
+#else
+/*
+ * Not needed on most systems
+ */
 #define set_thread_concurrency(x)
 
 #endif
@@ -551,8 +553,6 @@ int getdomainname(char *name, int len);
 #endif /* __cplusplus */
 #endif /* HAVE_DARWIN_OS */
 
-
-
 #if defined(HAVE_WIN32)
 /*
  *   Windows