[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2010-01-08 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348


User cmc changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from c...@openoffice.org Fri Jan  8 09:27:19 + 
2010 ---
closed, integrated m69

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2009-12-11 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348


User sb changed the following:

What|Old value |New value

 Assigned to|sb|cmc





--- Additional comments from s...@openoffice.org Fri Dec 11 08:19:38 + 
2009 ---
@cmc: care to verify on CWS sb116?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2009-12-11 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348


User cmc changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from c...@openoffice.org Fri Dec 11 09:03:45 + 
2009 ---
looks good to me

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2009-10-13 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348


User sb changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from s...@openoffice.org Tue Oct 13 11:13:13 + 
2009 ---
fixed as http://hg.services.openoffice.org/cws/sb116/rev/7e3bbe0c3fb4

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2009-09-29 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348





--- Additional comments from c...@openoffice.org Tue Sep 29 09:38:57 + 
2009 ---
As you probably know I've a single unxlng.mk master linux makefile in solenv
coming through in cmcfixes62 to try and reduce the amount of bustages where
settings are not getting propagated consistently across the various linux .mks 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2009-09-25 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348
 Issue #|105348
 Summary|get rid of LinuxThreads-specific code
   Component|porting
 Version|DEV300m59
Platform|All
 URL|
  OS/Version|Linux
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|code
 Assigned to|sb
 Reported by|sb





--- Additional comments from s...@openoffice.org Fri Sep 25 07:39:08 + 
2009 ---
According to hr, our Linux baseline no longer supports old LinuxThreads, just
NPTL.  There is one place in (DEV300m59) sal/osl/unx/process.c where
LinuxThreads-specific pthread_kill_other_threads_np (which, if still available
at all on an NPTL-based Linux system, performs nothing there) is called, if NPTL
is not defined (that check being added through issue 44027).  The check for NPTL
is in configure, and it uses PTHREAD_CFLAGS to communicate the -DNPTL to the
C/C++ compilers.  (In the setsolar-based environment, PTHREAD_CFLAGS
is---presumably erroneously---not set accordingly for unxlngx6, but for unxlngx6
and unxubti8, see solenv/config/sdev300.)  However, PTHREAD_CLFAGS is also used
on FreeBSD (and NetBSD?), for something different.

To clean up, the following can be remved:
- The call to pthread_kill_other_threads_np in sal/osl/unx/process.c.
- The code to check for NPTL on Linux in configure.in and configure.
- The code to set and read PTHREAD_CFLAGS on Linux in configure.in, configure,
set_soenv.in, solenv/config/sdev300.ini, solenv/config/ssolar.cmn,
solenv/inc/unxln*.mk.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 105348] get rid of LinuxThreads-s pecific code

2009-09-25 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105348


User sb changed the following:

What|Old value |New value

  Status|NEW   |STARTED

Target milestone|---   |OOo 3.3





--- Additional comments from s...@openoffice.org Fri Sep 25 07:40:40 + 
2009 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org