| Revision 2514,
992 bytes
checked in by sam, 5 years ago
(diff) |
- Add kill() to the list of supported remote syscalls. We might need to
send SIGCHLD to the grabbed process's parent.
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * neercs console-based window manager |
|---|
| 3 | * Copyright (c) 2008 Sam Hocevar <sam@zoy.org> |
|---|
| 4 | * All Rights Reserved |
|---|
| 5 | * |
|---|
| 6 | * $Id$ |
|---|
| 7 | * |
|---|
| 8 | * This program is free software. It comes without any warranty, to |
|---|
| 9 | * the extent permitted by applicable law. You can redistribute it |
|---|
| 10 | * and/or modify it under the terms of the Do What The Fuck You Want |
|---|
| 11 | * To Public License, Version 2, as published by Sam Hocevar. See |
|---|
| 12 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
|---|
| 13 | */ |
|---|
| 14 | |
|---|
| 15 | struct mytrace; |
|---|
| 16 | |
|---|
| 17 | struct mytrace* mytrace_attach(long int pid); |
|---|
| 18 | int mytrace_detach(struct mytrace *t); |
|---|
| 19 | |
|---|
| 20 | int mytrace_open(struct mytrace *t, char const *path, int mode); |
|---|
| 21 | int mytrace_write(struct mytrace *t, int fd, char const *data, size_t len); |
|---|
| 22 | int mytrace_close(struct mytrace *t, int fd); |
|---|
| 23 | int mytrace_dup2(struct mytrace *t, int oldfd, int newfd); |
|---|
| 24 | int mytrace_setpgid(struct mytrace *t, long pid, long pgid); |
|---|
| 25 | int mytrace_setsid(struct mytrace *t); |
|---|
| 26 | int mytrace_kill(struct mytrace *t, long pid, int sig); |
|---|
| 27 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.