1
vote
1answer
38 views
How can I check the internal attributes of shared objects?
When using HP-UX I can use the chatr utility to report on various internal attributes of a shared library. It will also allow me to modify the internal attributes of shared librari …
2
votes
3answers
262 views
REDUX: How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?
I have uncovered another problem in the effort that we are making to port several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. See here for the previous problem.
T …
0
votes
1answer
92 views
Appending to variable in Makefiles for HP-UX make
I'm trying to append some text to a variable in a Makefile for HP-UX's version of make.
If i use the "normal" appender, like this:
CFLAGS+=some text
$(CFLAGS) comes out empty.
…
0
votes
0answers
28 views
Remote debugging on HPUX
I am trying to do remote debugging on HPUX using WDB but am not really getting anywhere.
Any ideas or links to decent tutorials?
3
votes
5answers
521 views
Cross-platform way to get PIDs by process name in python
Several processes with the same name are running on host. What is the cross-platform way to get PIDs of that processes by name using python or jython?
It's like pidof but in pyth …
3
votes
8answers
511 views
Debug core file with no symbols
I have a C application we have deployed to a customers site. It was compiled and runs on HP-UX. The user has reported a crash and we have obtained a core dump. So far, I've been …
0
votes
2answers
37 views
Compiling GNU software on HP-UX. yy* symbols problem
When trying to compile GNU software on HP-UX (binutils for example) I'm getting error meggages about unsatisfied symbols yyfnd, yyextra, yytextuc, yyolsp ...
Some software can't b …
0
votes
1answer
149 views
GCC --target triplet for HP-UX
I want to compile GCC and binutils which would produce 64bit executables.
From GNU documents I've found out that it must look like ia64-*-hpux*.
For ia64-hp-hpux11*, the default o …
0
votes
3answers
460 views
Windows Performance Counter Port to Linux, HP-UX and AIX
We implemented a server application available on Windows only. Now we like to port it to Linux, HP-UX and AIX, too. This application provides internal statistics through performanc …
0
votes
2answers
125 views
Get the path of link that it points to?
Is it possible to get the abolute path of the link that it is pointing to?
Is there any simple system command?
I need for all of the following OS
HP-UX 11i, 1123u, 1123i
AIX 5.2 …
0
votes
1answer
297 views
How to diagnose/trace “sendsig: useracc failed.” problem in HP-UX
I am trying to compile Ruby 1.9.1-p0 on HP-UX. After a small change to ext/pty.c it compiles successfully, albeit with a lot of warning messages (about 5K). When I run the self-t …
1
vote
4answers
918 views
Java memory consumption, “top” and HP-Ux
We ship Java applications that are run on Linux, AIX and HP-Ux (PA-RISC). We seem to struggle to get acceptable levels of performance on HP-Ux from applications that work just fine …
0
votes
4answers
604 views
Breaking out of “tail -f” that’s being read by a “while read” loop in HP-UX
Hi All,
I'm trying to write a (sh -bourne shell) script that processes lines as they are written to a file. I'm attempting to do this by feeding the output of tail -f into a whi …
2
votes
8answers
2k views
Get full path of executable of running process on HPUX…
Hi All,
I want to get the full path of the running process (executable) without having root permission using C++ code. Can someone suggest a way to achieve this.
on Linux platform …
0
votes
6answers
1k views
C++ std::string Constructor
Hello all, any thoughts on this would be appreciated:
std::string s1 = "hello";
std::string s2 = std::string(s1);
I'd now expect these two strings to be independent, i.e. I could …
