Skip to content
Snippets Groups Projects
Commit 6bb05751 authored by Nick Kralevich's avatar Nick Kralevich
Browse files

FIONCLEX: fix MIPS ioctl number

The ioctl number varies between MIPS devices and other devices.

Test: policy compiles.
Change-Id: I107ccd2eca626148d2573f51753ec433e20d6b74
parent bab267a8
Branches
No related tags found
No related merge requests found
......@@ -791,7 +791,7 @@ define(`FIOASYNC', `0x00005452')
define(`FIOCLEX', ifelse(target_arch, mips, 0x00006601, 0x00005451))
define(`FIOGETOWN', `0x00008903')
define(`FIONBIO', `0x00005421')
define(`FIONCLEX', `0x00005450')
define(`FIONCLEX', ifelse(target_arch, mips, 0x00006602, 0x00005450))
define(`FIONREAD', ifelse(target_arch, mips, 0x0000467f, 0x0000541b))
define(`FIOQSIZE', `0x00005460')
define(`FIOSETOWN', `0x00008901')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment