aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/os
Commit message (Expand)AuthorAgeFilesLines
* Bug 1479: NativeLibrary: Add getNativeLibraryPath() returning queried used na...Sven Gothel2023-11-264-60/+133
* Clock/Platform: Add currentMillis() analogue to currentNanos(), returning cur...Sven Gothel2023-10-062-3/+34
* Clock: Use Clock.currentNanos() instead of System.nanoTime()Sven Gothel2023-03-071-2/+2
* Clock: Consider return code on failed native clock_gettime(..) call; Add Win3...Sven Gothel2023-03-071-9/+18
* Clock: Rename currentTimeNanos() -> currentNanos() as it represents the durat...Sven Gothel2023-03-061-16/+24
* Fix Clock for performance counter: Add currentTimeNanos() since module startu...Sven Gothel2023-03-061-23/+75
* Add Clock, implementing proper monotonic and wallclock time using Instant (se...Sven Gothel2023-03-062-20/+102
* NativeLibrary.enumerateLibraryPaths(): Reduce relative/absolute path mapping ...Sven Gothel2023-01-231-9/+12
* NativeLibrary.enumerateLibraryPaths(): Using addPaths() ensures given 'path' ...Sven Gothel2023-01-231-14/+51
* NativeLibrary: Add getSystemEnvLibraryPaths(), i.e. LD_LIBRARY_PATH, PATH, .....Sven Gothel2023-01-231-0/+35
* Replace AccessController.doPrivileged() w/ SecurityUtil.doPrivileged()Sven Gothel2023-01-142-7/+7
* Bug 1417 - Android: Add new x86 MachineDataInfo, differs due to smaller 'long...Sven Gothel2019-12-101-0/+3
* Bug 1417 - Android: Complete 1st round: make/lib/gluegen-cpptask-android-<abi...Sven Gothel2019-12-101-1/+2
* Bug 1363: Java 11: Complete renaming JEP 178 compatible native lib basename g...Sven Gothel2019-08-182-3/+3
* MacOS shall only scan for .dylib, dropping .jnilib search in NativeLibrarySven Gothel2019-08-181-5/+0
* iOS: NativeLibrary: Refine iOS, use proper alt system path for iOS+OSX, relax...Sven Gothel2019-06-212-28/+38
* Bug 1363: Java 11: Recognize Java9+ ..; Support JEP 178 static linkage libglu...Sven Gothel2019-06-172-2/+8
* iOS: Initial iOS support commit: build.xml targets, java code-path etcSven Gothel2019-06-173-6/+14
* Bug 1367: Make TempFileCache & TempJarCache even if temp folder can't handle ...Sven Gothel2019-04-032-2/+2
* Use system property to detect AndroidDiego Perez2016-04-061-9/+14
* Bug 1268 - DynamicLibraryBundleInfo: Add NativeLibrary's 'searchSystemPath' a...Sven Gothel2015-11-153-33/+65
* Bug 1194: Reinstate system-lib search for NativeLibrary.open(..) and Platform...Sven Gothel2015-08-181-5/+78
* Merge branch 'bug1194' of https://github.com/xranby/gluegenSven Gothel2015-08-181-46/+4
|\
| * Bug 1194: NativeLibrary: Remove dangerous search paths using the JRE extensio...Xerxes Rånby2015-08-121-46/+4
* | Bug 1145: Fix cc1 NativeLibrary: Add current working directory + natives/os-a...Xerxes Rånby2015-08-121-0/+4
|/
* DynamicLibraryBundle.toolDynamicLookupFunction(..): DEBUG: Show 'toolGetProcA...Sven Gothel2015-08-051-1/+1
* Fix DynamicLibraryBundle.isToolLibComplete() no tool-lib case, regression of ...Sven Gothel2015-03-181-1/+4
* Refine commit 12feaa7d3b1544098f684d851e3caff1ec88cbc8: Add 'throws SecurityE...Sven Gothel2015-02-051-7/+11
* Bug 1126 - Remove static query requirement of MachineDescriptor, find matchin...Sven Gothel2015-02-022-92/+151
* Minor Cleanup: Buffers: Remove !JAVA_6 branch; NativeLibrary: Reuse isOSX det...Sven Gothel2015-02-011-16/+8
* Bug 1125 - Make ELF Reader 'jogamp.common.os.elf' StatelessSven Gothel2015-02-013-129/+171
* Bug 1122: Refine AArch64 and OSType/32Bit incl. MachineDescriptionSven Gothel2015-01-303-70/+56
* Refine Native Library Code: Bulk Permissions, Cleanup DynamicLinker impl. - a...Sven Gothel2015-01-304-41/+132
* Bug 1122: Add AArch64 support (Android, GNU/Linux and in general)Sven Gothel2015-01-303-47/+36
* Refine ExceptionUtils: Shorten method name, dumpThrowable uses dumpStackSven Gothel2014-10-261-1/+2
* Bug 1063: Complete Uri impl. and adoption throughout GlueGenSven Gothel2014-09-081-4/+4
* Bug 1024: Add fallback for native-jar-file location via classpathSven Gothel2014-07-111-1/+1
* gluegen: relax private variable access to package-private for members accesse...Harvey Harrison2014-07-071-1/+1
* Merge remote-tracking branch 'github-mark/master' (Bug 1023, Bug 1024)Sven Gothel2014-07-051-2/+1
|\
| * Clean up native library loading and remove the ability to strip prefixes.Mark Raynsford2014-06-301-1/+1
* | Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2e...Sven Gothel2014-07-035-104/+105
* | Fix 'typo' in messages: 'Catched' -> 'Caught'Sven Gothel2014-06-282-2/+2
|/
* Minor edits: space, final qualifier; setenv-build-*: Add generic JDK locationSven Gothel2014-06-171-1/+1
* Bug 856 - Android: Support dual ABI (x86 i686 *and* ARMv7arm), i.e. pick 'bes...Sven Gothel2014-01-242-7/+84
* Platform: Fix API doc of getCPUFamily(), getCPUType() and getABIType()Sven Gothel2014-01-231-3/+9
* gluegen: add all missing @Override annotationsHarvey Harrison2013-10-174-0/+8
* gluegen: remove trailing whitespaceHarvey Harrison2013-10-178-235/+235
* Fix Bug 843: Remove Platform's requirement and use of TempJarCache.bootstrap...Sven Gothel2013-10-011-11/+3
* DynamicLibraryBundle: Remove unused importsSven Gothel2013-08-261-3/+0
* Platform: Add accurate currentTimeMillis() and currentTimeMicros() native met...Sven Gothel2013-08-151-0/+22