blob: cd51c37931114ecf4bf252a720408d223b7962a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|