Created
November 26, 2017 20:22
-
-
Save athoik/6ff1e1b5f11b5207cdb38ba21b2f87d7 to your computer and use it in GitHub Desktop.
A sample to demonstrate the values of SYS_ioprio_get and SYS_ioprio_set when using syscall header
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sys/syscall.h> | |
#include <iostream> | |
int main() | |
{ | |
std::cout << "SYS_ioprio_get:" << SYS_ioprio_get << " SYS_ioprio_set:" << SYS_ioprio_set << std::endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment