| 183 | char child[1024]; |
| 184 | snprintf(child, sizeof(child), "%s/%s", root, ent->d_name); |
| 185 | struct stat st; |
| 186 | if (stat(child, &st) == 0 && S_ISDIR(st.st_mode)) { |
| 187 | cgroup_test_teardown(child); /* recurse into subdir */ |
| 188 | } else { |
no outgoing calls