Query: utrace
OS: freebsd
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
UTRACE(2) BSD System Calls Manual UTRACE(2)NAMEutrace -- insert user record in ktrace logLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <sys/param.h> #include <sys/time.h> #include <sys/uio.h> #include <sys/ktrace.h> int utrace(const void *addr, size_t len);DESCRIPTIONAdds a record to the process trace with information supplied by user. The record contains len bytes from memory pointed to by addr. This call only has an effect if the calling process is being traced.RETURN VALUESUpon successful completion, the value 0 is returned; otherwise the value -1 is returned and the global variable errno is set to indicate the error.ERRORS[EINVAL] Specified data length len was bigger than KTR_USER_MAXLEN. [ENOMEM] Insufficient memory to honor the request. [ENOSYS] Currently running kernel was compiled without ktrace(2) support (options KTRACE).SEE ALSOkdump(1), ktrace(1), ktrace(2)HISTORYThe utrace() system call first appeared in FreeBSD 2.2.BSDNovember 1, 2014 BSD
Related Man Pages |
---|
ktrace(2) - freebsd |
utrace(2) - debian |
ktrace(1) - freebsd |
ktrace(1) - netbsd |
utrace(2) - freebsd |
Similar Topics in the Unix Linux Community |
---|
Why my find return not expected? |