[multiple changes]
2005-04-25 Archie Cobbs <archie@dellroad.org> * java/lang/Throwable.java: simplify initializing cause in constructor 2005-04-25 Michael Koch <konqueror@gmx.de> * gnu/classpath/SystemProperties.java: New file. * gnu/classpath/natSystemProperties.cc: New file. * java/lang/Runtime.java (defaultProperties): Removed. (static): Likewise. (): Made thrown exceptions more verbose. (insertSystemProperties): Removed. * java/lang/System.java (static): Likewise. (properties): Likewise. (setSecurityManager): Reordered modifiers. (getenv): Improved javadoc. (): Likewise. (isWordsBigEndian): Removed. * java/lang/natRuntime.cc (_Jv_SetDLLSearchPath): Likewise. (file_encoding): Likewise. (default_file_encoding): Likewise. (getpwuid_adaptor): Likewise. (insertSystemProperties): Likewise. * java/lang/natSystem.cc (isWordsBigEndian): Likewise. * Makefile.am (ordinary_java_source_files): Added gnu/classpath/SystemProperties.java. (nat_source_files): Added gnu/classpath/natSystemProperties.cc. * Makefile.in: Regenerated. From-SVN: r98734
This commit is contained in:
parent
8efae6bbfa
commit
ee141b8822
10 changed files with 641 additions and 554 deletions
|
@ -130,19 +130,6 @@ java::lang::System::identityHashCode (jobject obj)
|
|||
return _Jv_HashCode (obj);
|
||||
}
|
||||
|
||||
jboolean
|
||||
java::lang::System::isWordsBigEndian (void)
|
||||
{
|
||||
union
|
||||
{
|
||||
long lval;
|
||||
char cval;
|
||||
} u;
|
||||
|
||||
u.lval = 1;
|
||||
return u.cval == 0;
|
||||
}
|
||||
|
||||
jstring
|
||||
java::lang::System::getenv0 (jstring name)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue