├── .gitignore ├── Android.mk ├── Makefile ├── futex_requeue.c ├── log.h └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | libs/ 3 | obj/ 4 | 5 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwr/CVE-2014-3153/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwr/CVE-2014-3153/HEAD/Makefile -------------------------------------------------------------------------------- /futex_requeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwr/CVE-2014-3153/HEAD/futex_requeue.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwr/CVE-2014-3153/HEAD/log.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwr/CVE-2014-3153/HEAD/main.c --------------------------------------------------------------------------------