/*- * Copyright (c) 1979, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)SCLCK.c 8.1 (Berkeley) 06/06/93"; #endif /* not lint */ #include #include long SCLCK() { struct rusage ru; if (getrusage(RUSAGE_SELF, &ru) < 0) return (-1); return (ru.ru_stime.tv_sec * 1000 + ru.ru_stime.tv_usec / 1000); }