| 562 | char child[1024]; |
| 563 | snprintf(child, sizeof(child), "%s/%s", root, ent->d_name); |
| 564 | struct stat st; |
| 565 | if (stat(child, &st) == 0 && S_ISDIR(st.st_mode)) { |
| 566 | cgroup_test_teardown(child); /* recurse into subdir */ |
| 567 | } else { |
no outgoing calls