Remove unnecessary STRACE() statement

This commit is contained in:
Justine Tunney 2022-11-08 15:31:54 -08:00
parent fc595a7111
commit b74d8c1acd
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2 changed files with 0 additions and 3 deletions

View file

@ -49,9 +49,6 @@ static errno_t sys_clock_nanosleep(int clock, int flags,
int e, rc;
BEGIN_CANCELLATION_POINT;
e = errno;
STRACE("clock_nanosleep(%s, %s, %s, %s) → ...", DescribeClockName(clock),
DescribeSleepFlags(flags), DescribeTimespec(0, req),
DescribeTimespec(0, rem));
if (IsLinux() || IsFreebsd() || IsNetbsd()) {
rc = __sys_clock_nanosleep(clock, flags, req, rem);
} else if (IsXnu()) {