src/java.base/unix/native/libjli/java_md_common.c
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File jdk Sdiff src/java.base/unix/native/libjli

src/java.base/unix/native/libjli/java_md_common.c

Print this page
rev 11654 : imported patch libjli


 252                 return (0);
 253         }
 254         /* squeeze up one entry */
 255         do {
 256                 environ[idx] = environ[idx+1];
 257         } while (environ[++idx] != NULL);
 258 
 259         return (0);
 260 }
 261 /* --- End of "borrowed" code --- */
 262 
 263 /*
 264  * Wrapper for unsetenv() function.
 265  */
 266 int
 267 UnsetEnv(char *name)
 268 {
 269     return(borrowed_unsetenv(name));
 270 }
 271 
 272 const char *
 273 jlong_format_specifier() {
 274     return "%lld";
 275 }
 276 
 277 jboolean
 278 IsJavaw()
 279 {
 280     /* noop on UNIX */
 281     return JNI_FALSE;
 282 }
 283 
 284 void
 285 InitLauncher(jboolean javaw)
 286 {
 287     JLI_SetTraceLauncher();
 288 }
 289 
 290 /*
 291  * The implementation for finding classes from the bootstrap
 292  * class loader, refer to java.h
 293  */
 294 static FindClassFromBootLoader_t *findBootClass = NULL;
 295 
 296 jclass




 252                 return (0);
 253         }
 254         /* squeeze up one entry */
 255         do {
 256                 environ[idx] = environ[idx+1];
 257         } while (environ[++idx] != NULL);
 258 
 259         return (0);
 260 }
 261 /* --- End of "borrowed" code --- */
 262 
 263 /*
 264  * Wrapper for unsetenv() function.
 265  */
 266 int
 267 UnsetEnv(char *name)
 268 {
 269     return(borrowed_unsetenv(name));
 270 }
 271 





 272 jboolean
 273 IsJavaw()
 274 {
 275     /* noop on UNIX */
 276     return JNI_FALSE;
 277 }
 278 
 279 void
 280 InitLauncher(jboolean javaw)
 281 {
 282     JLI_SetTraceLauncher();
 283 }
 284 
 285 /*
 286  * The implementation for finding classes from the bootstrap
 287  * class loader, refer to java.h
 288  */
 289 static FindClassFromBootLoader_t *findBootClass = NULL;
 290 
 291 jclass


src/java.base/unix/native/libjli/java_md_common.c
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File