HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Launching threads in HPUX 11i
Operating System - HP-UX
1833789
Members
2547
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2003 05:24 PM
01-28-2003 05:24 PM
Launching threads in HPUX 11i
Hi,
in my current project I have to migrate a C++ application from HPUX11 to HPUX11i.
This application uses POSIX threads.
In HPUX11 when function pthread_create() is called, the thread' startup routine is called and everything works perfectly.
In HPUX11i, with the same function pthread_create(), it doesn't call the startup routine and consequently threads are not launched!
Can anybody help be?
Thanks in advance.
in my current project I have to migrate a C++ application from HPUX11 to HPUX11i.
This application uses POSIX threads.
In HPUX11 when function pthread_create() is called, the thread' startup routine is called and everything works perfectly.
In HPUX11i, with the same function pthread_create(), it doesn't call the startup routine and consequently threads are not launched!
Can anybody help be?
Thanks in advance.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 09:44 AM
01-29-2003 09:44 AM
Re: Launching threads in HPUX 11i
Perhaps you just have a link order problem. If libc is linked in before libpthread you will get a stub version of pthread_create that won't really create a thread. For aCC you should be using the "-mt" option to both define macros for getting thread safe header files and link with libpthread. You should not explicitly list libc in your link lines. Have a look at
http://docs.hp.com/hpux/onlinedocs/dev/aCC/a_03_30/options.htm#option-mt
and
http://www.docs.hp.com./hpux/onlinedocs/B2355-90695/00/00/58-con.html
for details of the -mt option and general pthread use guidelines.
http://docs.hp.com/hpux/onlinedocs/dev/aCC/a_03_30/options.htm#option-mt
and
http://www.docs.hp.com./hpux/onlinedocs/B2355-90695/00/00/58-con.html
for details of the -mt option and general pthread use guidelines.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP