This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/include/knob/task.h
2021-01-24 12:00:11 -05:00

12 lines
No EOL
261 B
C

#ifndef KNOB_TASK_H
#define KNOB_TASK_H
#include <pland/syscall.h>
#include <stdint.h>
#include <stdbool.h>
uint32_t run_command(const char *path, _task_handle_t stdio_task);
bool try_run_command_blocking(const char *path, _task_handle_t stdio_task);
#endif