[PATCH v2 09/12] perf tools: replace mkostemp with mkstemp

2012-09-07 Thread Irina Tirdea
From: Irina Tirdea mkostemp is only available in glibc. This leads to compile error in Android, since bionic is derived from BSD. Replacing mkostemp with mkstemp. mkstemp is available on both glibc and bionic. Signed-off-by: Irina Tirdea --- tools/perf/util/dso-test-data.c |2 +- 1 file

[PATCH v2 09/12] perf tools: replace mkostemp with mkstemp

2012-09-07 Thread Irina Tirdea
From: Irina Tirdea irina.tir...@intel.com mkostemp is only available in glibc. This leads to compile error in Android, since bionic is derived from BSD. Replacing mkostemp with mkstemp. mkstemp is available on both glibc and bionic. Signed-off-by: Irina Tirdea irina.tir...@intel.com ---