everything related to duct tape audio suite (dtas)
 help / color / mirror / code / Atom feed
* [PATCH] dtas-graph: show inode number in hex, too
@ 2019-06-28 21:01 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2019-06-28 21:01 UTC (permalink / raw)
  To: dtas-all

This makes it easier to match up pipes to the contents of
/proc/$PID/fdinfo/$EVENTPOLL_FD (ep_show_fdinfo) for software
using epoll.

(I'm using this tool outside of dtas, too)
---
 perl/dtas-graph | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/perl/dtas-graph b/perl/dtas-graph
index 9028303..b243086 100755
--- a/perl/dtas-graph
+++ b/perl/dtas-graph
@@ -123,7 +123,8 @@ foreach my $pid (sort { $a <=> $b } keys %pids) {
 print "\nPIPEID PIPE_INO\n";
 foreach my $pipe_id (sort { $a <=> $b } keys %graphed) {
 	printf "% 6s", "|$pipe_id";
-	print " ", $graphed{$pipe_id}, "\n";
+	my $ino = $graphed{$pipe_id};
+	printf " %u (0x%0x)\n", $ino, $ino;
 }
 
 print $graph->as_ascii;
-- 
EW



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-06-28 21:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-28 21:01 [PATCH] dtas-graph: show inode number in hex, too Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/dtas.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).