summaryrefslogtreecommitdiff
path: root/library/wchan.c
blob: b67ab414a8977a604f93ec75baeaa7cc03989c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * wchan.c - kernel symbol handling
 * Copyright 1998-2003 by Albert Cahalan
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>

#include "wchan.h"  // to verify prototype


const char *lookup_wchan (int pid) {
   static __thread char buf[64];
   const char *ret = buf;
   ssize_t num;
   int fd;

   snprintf(buf, sizeof buf, "/proc/%d/wchan", pid);
   fd = open(buf, O_RDONLY);
   if (fd==-1) return "?";

   num = read(fd, buf, sizeof buf - 1);
   close(fd);

   if (num<1) return "?"; // allow for "0"
   buf[num] = '\0';

   if (buf[0]=='0' && buf[1]=='\0') return "-";

   // lame ppc64 has a '.' in front of every name
   if (*ret=='.') ret++;
   while(*ret=='_') ret++;

   return ret;
}