int delete_tcluster(int cluster);
This syscall deletes the passed thread cluster, will only succeed if the cluster has no associated threads.
The syscall returns 0
on success and -1
on failure, with the
following errno:
EINVAL
: The passed cluster does not exist or still has threads.