The truss tag has no wiki summary.
0
votes
1answer
22 views
Debugging open() command call with truss
Using truss -t'open' $(program_call) I get:
open("command.txt", O_RDONLY|O_NONBLOCK) = 5
response FIFO file descriptor = -1
// Open call was literally sandwiched between print commands, but its ...
1
vote
0answers
51 views
Having problems redirecting stderr to a subshell created w/process substitution
~ bash --version
GNU bash, version 3.2.51(1)-release (sparc-sun-solaris2.10)
Copyright (C) 2007 Free Software Foundation, Inc.
The following command works as expected:
~ ls hdfhdfhdhfd 2> ...
0
votes
0answers
27 views
Formatting output by TRUSS
I've used truss util on Linux and got output.log file.
(truss -vall -t connect,poll,read,recvmsg,recvfrom,send,sendmsg,sendto,shutdown,write -o output.log prog)
There I found that some lines a marked ...
1
vote
1answer
61 views
Which loops and which co-ordinate system can I use to automate this example of a truss structure
I am completely new to matlab and can't seem to get an if loop to work. For example if Ln > k , plot point i(n-1) to i(n). How would I automatically assign the correct row or column vectors to i(n)?
...
0
votes
0answers
28 views
FEM for trusses
Is there a Matlab code out there can can let me calculate the deflection at any point on a truss system, which I can also customize? I understand the concepts of FEM but I'm not good enough at coding ...
1
vote
1answer
324 views
Process under FreeBSD 9.0 hangs in uninterruptable sleep with apparently no syscall (empty wchan)
I have a custom logging process that is reading from STDIN and sending the data out via TCP to a scribed logging server.
STDIN is in my case an access log that is attached to Apache httpd 2.2 like ...
0
votes
2answers
1k views
MATLAB and gplot
I'm trying to find a way to plot a truss in MATLAB, I can do it by using an adjacency matrix and the gplot function, but its very long winded approach especially if there are a lot of nodes connected ...
0
votes
2answers
543 views
man kaio: No manual entry for kaio
I trussed a process, and they are lines as below. And I want to know the definition of kaio, but there is no manual entry for kaio, so whether can I get the definition?
/1: kaio(AIOWRITE, 259, ...
1
vote
4answers
532 views
Alternative to 'truss -p' instruction
I am looking for a command in Unix that returns the status of a process(active, dead, sleeping, waiting for another process, etc.)
is there any available?
A shell script maybe?