| 489 | char child[1024]; |
| 490 | snprintf(child, sizeof(child), "%s/%s", root, ent->d_name); |
| 491 | struct stat st; |
| 492 | if (stat(child, &st) == 0 && S_ISDIR(st.st_mode)) { |
| 493 | cgroup_test_teardown(child); /* recurse into subdir */ |
| 494 | } else { |
no outgoing calls