2017-09-25 06:47:30 +00:00
|
|
|
# Copyright 2017 syzkaller project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
include <zircon/syscalls.h>
|
|
|
|
include <zircon/syscalls/log.h>
|
|
|
|
|
2018-07-04 02:53:42 +00:00
|
|
|
resource zx_debug_log[zx_handle]
|
2017-09-25 06:47:30 +00:00
|
|
|
|
2018-07-04 02:53:42 +00:00
|
|
|
# Undocumented syscall
|
|
|
|
zx_debuglog_create(root_resource zx_root_resource, options flags[log_create_options], out ptr[out, zx_debug_log])
|
|
|
|
zx_debuglog_read(handle zx_debug_log, options int32, ptr ptr[out, array[int8]], size len[ptr])
|
|
|
|
zx_debuglog_write(handle zx_debug_log, options int32, ptr ptr[in, array[int8]], size len[ptr])
|
|
|
|
|
2017-09-25 06:47:30 +00:00
|
|
|
log_create_options = ZX_LOG_FLAG_READABLE
|