aboutsummaryrefslogtreecommitdiff
path: root/android
AgeCommit message (Collapse)Author
2017-01-12core: Remove use of gettimeofday()Chris Dickens
Prior to this commit, gettimeofday() was being used for timestamps in debug messages. This function has been marked as deprecated in the latest POSIX specification and furthermore is not supported on Windows, thus requiring our own implementation as usbi_gettimeofday(). This commit changes the logging code to obtain timestamps using the clock_gettime() function provided by the backend. The implementation of usbi_gettimeofday() for Windows was actually equivalent to that of the USBI_CLOCK_REALTIME implementation for clock_gettime(), so this eliminates code duplication. In addition, the USBI_CLOCK_REALTIME implementation has been updated for Windows to leverage the timespec_get() function available in VS 2015 and later. Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
2017-01-12core: Remove check for and inclusion of signal.hChris Dickens
Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
2016-03-06android: update READMEWilliam Skellenger
Added other $ARCH Signed-off-by: Ludovic Rousseau <ludovic.rousseau@free.fr>
2016-03-06android: Fix typo in READMEWilliam Skellenger
Remove the /sdcard copy and not the /system/lib copy Signed-off-by: Ludovic Rousseau <ludovic.rousseau@free.fr>
2014-01-08Misc: Revert all references to libusb/libusb.infohjelmn@cs.unm.edu
2013-12-28Android: Add support for Linux/Android platformsKuangye Guo
* Closes #154
2013-12-28Android: Build for all Android architecturesAndrew Fernandes
* Don't limit support to ARM only (adds MIPS support) * Also add a workaround for a MIPS NDK linker bug * Also add a gitignore entry required to run bootstrap.sh on OS X * Closes #134
2013-08-21Android: Add further documentation to Android README fileToby Gray
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2013-08-11Android: Add examples and stress testsToby Gray
2013-08-11Android: Add formal Android supportToby Gray
* Also fix an issue with LIBUSB_LOG_LEVEL_NONE