| 150 | |
| 151 | |
| 152 | signed char is_ignored_file(char *str) |
| 153 | { |
| 154 | int i; |
| 155 | for (i = 0 ; i < ignore_file_list_cnt ; i++) |
| 156 | if (!strcmp(ignore_file_list[i], str)) |
| 157 | return 1; |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | #ifdef __APPLE__ |
| 162 | int find_pid_by_id(pid_t pid, pidinfo_t *pid_list) |