2021-11-13 01:50:50 +08:00
|
|
|
#ifndef SC_PROCESS_INTR_H
|
|
|
|
#define SC_PROCESS_INTR_H
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#include "intr.h"
|
|
|
|
#include "process.h"
|
|
|
|
|
2021-11-18 01:30:54 +08:00
|
|
|
ssize_t
|
|
|
|
sc_pipe_read_intr(struct sc_intr *intr, sc_pid pid, sc_pipe pipe, char *data,
|
|
|
|
size_t len);
|
|
|
|
|
|
|
|
ssize_t
|
|
|
|
sc_pipe_read_all_intr(struct sc_intr *intr, sc_pid pid, sc_pipe pipe,
|
|
|
|
char *data, size_t len);
|
|
|
|
|
2021-11-13 01:50:50 +08:00
|
|
|
#endif
|