|
Last change
on this file since b57ba05 was d7f7a4a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago |
|
Replace some license headers with SPDX identifier
Headers are replaced using tools/transorm-copyright.sh only
when it can be matched verbatim with the license header used
throughout most of the codebase.
|
-
Property mode
set to
100644
|
|
File size:
1.1 KB
|
| Rev | Line | |
|---|
| [9a1b20c] | 1 | /*
|
|---|
| [d7f7a4a] | 2 | * SPDX-FileCopyrightText: 2008 Jiri Svoboda
|
|---|
| [9a1b20c] | 3 | *
|
|---|
| [d7f7a4a] | 4 | * SPDX-License-Identifier: BSD-3-Clause
|
|---|
| [9a1b20c] | 5 | */
|
|---|
| 6 |
|
|---|
| 7 | /** @addtogroup libc
|
|---|
| 8 | * @{
|
|---|
| 9 | */
|
|---|
| 10 | /** @file
|
|---|
| 11 | */
|
|---|
| 12 |
|
|---|
| [4805495] | 13 | #ifndef _LIBC_UDEBUG_H_
|
|---|
| 14 | #define _LIBC_UDEBUG_H_
|
|---|
| [9a1b20c] | 15 |
|
|---|
| [c0699467] | 16 | #include <abi/udebug.h>
|
|---|
| [8d2dd7f2] | 17 | #include <stddef.h>
|
|---|
| 18 | #include <stdint.h>
|
|---|
| [79ae36dd] | 19 | #include <async.h>
|
|---|
| [9a1b20c] | 20 |
|
|---|
| 21 | typedef sysarg_t thash_t;
|
|---|
| 22 |
|
|---|
| [b7fd2a0] | 23 | extern errno_t udebug_begin(async_sess_t *);
|
|---|
| 24 | extern errno_t udebug_end(async_sess_t *);
|
|---|
| 25 | extern errno_t udebug_set_evmask(async_sess_t *, udebug_evmask_t);
|
|---|
| [5b0cf63] | 26 | extern errno_t udebug_thread_read(async_sess_t *, void *, size_t, size_t *,
|
|---|
| [79ae36dd] | 27 | size_t *);
|
|---|
| [b7fd2a0] | 28 | extern errno_t udebug_name_read(async_sess_t *, void *, size_t, size_t *,
|
|---|
| [79ae36dd] | 29 | size_t *);
|
|---|
| [b7fd2a0] | 30 | extern errno_t udebug_areas_read(async_sess_t *, void *, size_t, size_t *,
|
|---|
| [79ae36dd] | 31 | size_t *);
|
|---|
| [b7fd2a0] | 32 | extern errno_t udebug_mem_read(async_sess_t *, void *, uintptr_t, size_t);
|
|---|
| 33 | extern errno_t udebug_args_read(async_sess_t *, thash_t, sysarg_t *);
|
|---|
| 34 | extern errno_t udebug_regs_read(async_sess_t *, thash_t, void *);
|
|---|
| 35 | extern errno_t udebug_go(async_sess_t *, thash_t, udebug_event_t *, sysarg_t *,
|
|---|
| [79ae36dd] | 36 | sysarg_t *);
|
|---|
| [b7fd2a0] | 37 | extern errno_t udebug_stop(async_sess_t *, thash_t);
|
|---|
| [9a1b20c] | 38 |
|
|---|
| 39 | #endif
|
|---|
| 40 |
|
|---|
| 41 | /** @}
|
|---|
| 42 | */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.