Tagged Questions

3
votes
3answers
251 views

Stack unwinding on HP-UX and Linux

I need to get the stack information of my C application in certain points. I've read the documentation and searched the Net but still cannot figure out how I can do it. Can you poi …
2
votes
2answers
55 views

Static/global constructors on GCC 4.1 / HP-UX 11.23

Quick summary: Lots of existing code that works fine on numerous platforms under gcc 4.1, aCC, VisualAge, and MSVC. I am working on getting this up to snuff on HP-UX currently. Th …
2
votes
2answers
249 views

how to get the command line args passed to a running process on unix/linux systems?

On SunOS there is pargs command that prints the command line aruguments passed to the running process. Is there is any similar command on other Unix environments?
2
votes
2answers
414 views

HPUX machinfo equivalent for Linux? or What hardware am I using?

In HPUX the command "machinfo" list machine information such as Number of CPUs, Clock speed, Bus speed, processor type, Cache information, total memory, and OS version information. …
0
votes
2answers
46 views

Idle tcp file descriptor after failed connect on HPUX

I have a client tcp socket (in c++) that has a loop where it retries to open a socket and connect to a server at a certain interval until it succeeds. A bug in the program caused …
0
votes
1answer
30 views

What is the difference between a .sl and a .so on HPUX?

Since you can link your application to a .sl file and a .so file what exactly are the differences between .so and .sl files?
0
votes
1answer
53 views

executable failing in malloc_y function

we are trying to port our application from HP machine to AIX machine. it was running fine on HP machine but now its failing in malloc_y funtion. but we cant find any clue for this. …
0
votes
2answers
88 views

Checking memory leaks on HPUX

What fields of getrusage do I use in order to check for memory leak on HPUX (what is the parallel to RES in 'top')?
0
votes
1answer
54 views

Add linker option to boost build on HPUX

On HPUX I need to use the +h link option to get the boost 1.39.0 shared libraries to contain correct paths. -Wl,+h$(SPACE)-Wl,$(<[-1]:D=) (From http://www.nabble.com/HPUX-aCC …
0
votes
1answer
145 views

Dynamic changes to thread stack size in Solaris 9 ?

Hello, I am looking for a configurable / tunable on Solaris 9 through which I can change the default thread stack size without recompiling the code to use "pthread_attr_setstacksi …
0
votes
1answer
45 views

Compiling Ruby 1.9.1-p129 on HPUX

I am trying to compile Ruby on HPUX but get the following: cc: "transcode.c", line 1489: error 1588: "SIZE_MAX" undefined. cc: "transcode.c", line 1489: error 1563: Expression in …
0
votes
2answers
40 views

/usr/ldbin/resetpw varient for Linux

I've got a application that makes a shell call out to the HPUX resetpw command. It doesn't exist in Linux. Is there another command with similar functionality I could reference fro …
0
votes
3answers
72 views

Curses Window in Linux Causing Abort

I have some legacy C code that I recently compiled on Linux. On the original HPUX the application opens and closes multiple curses windows. On the Linux box it can handle one win …