- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ubench hang on IA64 HPUX box
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
11-18-2002 11:33 PM
11-18-2002 11:33 PM
ubench hang on IA64 HPUX box
When I run ubench(PA binary) on HP-UX 11.22(1.6),then it never ends.
When I run ubench(IA binary) on HP-UX 11.22(1.6), then it finished about 3min.
Has anyone tried this before?
http://www.phystech.com/download/ubench.html
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 01:51 AM
11-19-2002 01:51 AM
Re: ubench hang on IA64 HPUX box
Is PHSS_27292 installed? Maybe the SIGALRM is not delivered to the process. Sounds like Aries bug JAGae34834:
Aries does not correctly deliver signals to exec'ed process.
Regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 03:13 AM
11-19-2002 03:13 AM
Re: ubench hang on IA64 HPUX box
Thanks for the reply
I have installed the patch that Dietmar mentioned and run the ubench again. Still PA binary never stop .
I wonder still something wrong with "Aries".
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 08:08 AM
11-19-2002 08:08 AM
Re: ubench hang on IA64 HPUX box
I duplicated the problem on our system and indeed, I _believe_ we are hitting a new Aries problem.
The ubench sets an alarm() (180 seconds) and starts the cpu test. When it is signaled by SIGALRM, then a 2nd alarm() is set and the memory test starts. This second alarm never reaches the process.
The problem can be duplicated using this small example:
#include
#include
#include
#include
jmp_buf env;
void sigHandler(sig)
int sig;
{
siglongjmp(env,sig);
}
main()
{
int i;
struct sigaction action;
action.sa_handler= &sigHandler;
action.sa_flags = 0;
sigaction(SIGINT,&action,NULL);
if ( (i=sigsetjmp(env,0xffff)) ) {
printf ("Signal %d\n", i);
}
while (1);
}
When you run it then "Signal 2" should be printed each time you hit Ctrl-C. This usually works fine, unless you compile it as 64bit (+DD64) and run this under Aries. Here we get only a single SIGINT for the 1st Ctrl-C! No more.
So I assume there is still a signal handling problem with Aries, 64bit only. I will raise a Change Request to get this addressed.
In the meantime you can run ubench using the -c and -m options separately.
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2002 12:05 AM
11-25-2002 12:05 AM
Re: ubench hang on IA64 HPUX box
Thanks for the support :)
I hope HP will fix this problem.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2002 02:34 AM
11-25-2002 02:34 AM
Re: ubench hang on IA64 HPUX box
Best regards...
Dietmar.