blob: 00533a900f89e123316a34868bb15608a466cd47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* util9p/coroutine.h - 9P access to libcr process information
*
* Copyright (C) 2025 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _UTIL9P_COROUTINE_H_
#define _UTIL9P_COROUTINE_H_
#include <lib9p/srv.h>
struct coroutine_file {
char *name;
uint64_t pathnum;
};
LO_IMPLEMENTATION_H(lib9p_srv_file, struct coroutine_file, coroutine_file);
#endif /* _UTIL9P_COROUTINE_H_ */
|