[prev in list] [next in list] [prev in thread] [next in thread] 

List:       ipcop-svn
Subject:    [Ipcop-svn] SF.net SVN: ipcop:[5175] ipcop/trunk
From:       owes () users ! sourceforge ! net
Date:       2010-11-24 20:32:21
Message-ID: E1PLM0r-0008GW-6s () sfp-svn-3 ! v30 ! ch3 ! sourceforge ! com
[Download RAW message or body]

Revision: 5175
          http://ipcop.svn.sourceforge.net/ipcop/?rev=5175&view=rev
Author:   owes
Date:     2010-11-24 20:32:20 +0000 (Wed, 24 Nov 2010)

Log Message:
-----------
Upgrade rsyslog to 5.6.1

Modified Paths:
--------------
    ipcop/trunk/lfs/rsyslog
    ipcop/trunk/updates/1.9.19/information.xml

Added Paths:
-----------
    ipcop/trunk/src/patches/rsyslog-5.6.1_stack-size.patch

Removed Paths:
-------------
    ipcop/trunk/src/patches/rsyslog-5.6.0_stack-size.patch

Modified: ipcop/trunk/lfs/rsyslog
===================================================================
--- ipcop/trunk/lfs/rsyslog	2010-11-24 19:33:36 UTC (rev 5174)
+++ ipcop/trunk/lfs/rsyslog	2010-11-24 20:32:20 UTC (rev 5175)
@@ -33,7 +33,7 @@
 include Config
 
 PKG_NAME   = rsyslog
-VER        = 5.6.0
+VER        = 5.6.1
 HOST_ARCH  = all
 OTHER_SRC  = yes
 
@@ -51,7 +51,7 @@
 
 $(DL_FILE)				= $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5				= 62c8edad559a39ca8c124ca87908075b
+$(DL_FILE)_MD5				= 315ca33f4c4bb91f9e4b12e5afd8e550
 
 install : $(TARGET)
 

Deleted: ipcop/trunk/src/patches/rsyslog-5.6.0_stack-size.patch
===================================================================
--- ipcop/trunk/src/patches/rsyslog-5.6.0_stack-size.patch	2010-11-24 19:33:36 UTC \
                (rev 5174)
+++ ipcop/trunk/src/patches/rsyslog-5.6.0_stack-size.patch	2010-11-24 20:32:20 UTC \
(rev 5175) @@ -1,36 +0,0 @@
---- rsyslog-4.4.2/threads.c.orig	2010-01-11 09:20:44.000000000 +0100
-+++ rsyslog-4.4.2/threads.c	2010-01-11 09:27:23.000000000 +0100
-@@ -39,6 +39,8 @@
- #include "linkedlist.h"
- #include "threads.h"
- 
-+static pthread_attr_t pthreadGlobalAttr;
-+
- /* linked list of currently-known threads */
- static linkedList_t llThrds;
- 
-@@ -220,7 +220,11 @@
- 	pThis->pUsrThrdMain = thrdMain;
- 	pThis->pAfterRun = afterRun;
- 	pThis->bNeedsCancel = bNeedsCancel;
-+
-+	/* Give threads a smaller stack, 512 KiB should be sufficient */
-+	pthread_attr_init(&pthreadGlobalAttr);
-+	pthread_attr_setstacksize(&pthreadGlobalAttr, 512 * 1024);
--	i = pthread_create(&pThis->thrdID, NULL, thrdStarter, pThis);
-+	i = pthread_create(&pThis->thrdID, &pthreadGlobalAttr, thrdStarter, pThis);
- 	CHKiRet(llAppend(&llThrds, NULL, pThis));
- 
- finalize_it:
---- rsyslog-4.4.2/runtime/wtp.c.orig	2010-01-11 10:21:53.000000000 +0100
-+++ rsyslog-4.4.2/runtime/wtp.c	2010-01-11 10:24:51.000000000 +0100
-@@ -422,6 +422,9 @@
- 
- 	pWti = pThis->pWrkr[i];
- 	wtiSetState(pWti, WRKTHRD_RUNNING);
-+
-+	/* Give threads a smaller stack, 512 KiB should be sufficient */
-+	pthread_attr_setstacksize(&pThis->attrThrd, 512 * 1024);
- 	iState = pthread_create(&(pWti->thrdID), &pThis->attrThrd, wtpWorker, (void*) \
                pWti);
- 	ATOMIC_INC(&pThis->iCurNumWrkThrd, &pThis->mutCurNumWrkThrd); /* we got one more! \
                */
- 

Copied: ipcop/trunk/src/patches/rsyslog-5.6.1_stack-size.patch (from rev 5173, \
ipcop/trunk/src/patches/rsyslog-5.6.0_stack-size.patch) \
                ===================================================================
--- ipcop/trunk/src/patches/rsyslog-5.6.1_stack-size.patch	                        \
                (rev 0)
+++ ipcop/trunk/src/patches/rsyslog-5.6.1_stack-size.patch	2010-11-24 20:32:20 UTC \
(rev 5175) @@ -0,0 +1,36 @@
+--- rsyslog-4.4.2/threads.c.orig	2010-01-11 09:20:44.000000000 +0100
++++ rsyslog-4.4.2/threads.c	2010-01-11 09:27:23.000000000 +0100
+@@ -39,6 +39,8 @@
+ #include "linkedlist.h"
+ #include "threads.h"
+ 
++static pthread_attr_t pthreadGlobalAttr;
++
+ /* linked list of currently-known threads */
+ static linkedList_t llThrds;
+ 
+@@ -220,7 +220,11 @@
+ 	pThis->pUsrThrdMain = thrdMain;
+ 	pThis->pAfterRun = afterRun;
+ 	pThis->bNeedsCancel = bNeedsCancel;
++
++	/* Give threads a smaller stack, 512 KiB should be sufficient */
++	pthread_attr_init(&pthreadGlobalAttr);
++	pthread_attr_setstacksize(&pthreadGlobalAttr, 512 * 1024);
+-	i = pthread_create(&pThis->thrdID, NULL, thrdStarter, pThis);
++	i = pthread_create(&pThis->thrdID, &pthreadGlobalAttr, thrdStarter, pThis);
+ 	CHKiRet(llAppend(&llThrds, NULL, pThis));
+ 
+ finalize_it:
+--- rsyslog-4.4.2/runtime/wtp.c.orig	2010-01-11 10:21:53.000000000 +0100
++++ rsyslog-4.4.2/runtime/wtp.c	2010-01-11 10:24:51.000000000 +0100
+@@ -422,6 +422,9 @@
+ 
+ 	pWti = pThis->pWrkr[i];
+ 	wtiSetState(pWti, WRKTHRD_RUNNING);
++
++	/* Give threads a smaller stack, 512 KiB should be sufficient */
++	pthread_attr_setstacksize(&pThis->attrThrd, 512 * 1024);
+ 	iState = pthread_create(&(pWti->thrdID), &pThis->attrThrd, wtpWorker, (void*) \
pWti); + 	ATOMIC_INC(&pThis->iCurNumWrkThrd, &pThis->mutCurNumWrkThrd); /* we got one \
more! */ + 


Property changes on: ipcop/trunk/src/patches/rsyslog-5.6.1_stack-size.patch
___________________________________________________________________
Added: svn:mergeinfo
   + 

Modified: ipcop/trunk/updates/1.9.19/information.xml
===================================================================
--- ipcop/trunk/updates/1.9.19/information.xml	2010-11-24 19:33:36 UTC (rev 5174)
+++ ipcop/trunk/updates/1.9.19/information.xml	2010-11-24 20:32:20 UTC (rev 5175)
@@ -3,7 +3,7 @@
         <version>1.9.19</version>
         <releasedate>2010-mm-dd</releasedate>
         <size>0</size>
-        <description>Upgrade kernel to 2.6.32.26, rsyslog to 5.6.0, udev to \
164.&lt;br /&gt; +        <description>Upgrade kernel to 2.6.32.26, rsyslog to 5.6.1, \
udev to 164.&lt;br /&gt;  &lt;b&gt;Mandatory reboot after \
upgrade.&lt;/b&gt;</description>  <previousversion>1.9.18</previousversion>
         <installdate>INSTALLDATE</installdate>


This was sent by the SourceForge.net collaborative development platform, the world's \
largest Open Source development site.

------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Ipcop-svn mailing list
Ipcop-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipcop-svn


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic