Skip to content

Instantly share code, notes, and snippets.

@lupyuen
Created January 18, 2024 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lupyuen/69b832f89efe2dc31e6da40a19b78354 to your computer and use it in GitHub Desktop.
Save lupyuen/69b832f89efe2dc31e6da40a19b78354 to your computer and use it in GitHub Desktop.
Auto-Generated Proxy for NuttX sched_getparam: nuttx/syscall/proxies/PROXY_sched_getparam.c. See https://github.com/lupyuen/nuttx-tinyemu
/* Auto-generated sched_getparam proxy file -- do not edit */
#include <nuttx/config.h>
#include <sched.h>
#include <syscall.h>
int sched_getparam(pid_t parm1, FAR struct sched_param * parm2)
{
return (int)sys_call2((unsigned int)SYS_sched_getparam, (uintptr_t)parm1, (uintptr_t)parm2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment