comparison src/share/vm/runtime/javaCalls.cpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents 190899198332
children e5d78f318aec
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
300 300
301 void JavaCalls::call(JavaValue* result, methodHandle method, JavaCallArguments* args, TRAPS) { 301 void JavaCalls::call(JavaValue* result, methodHandle method, JavaCallArguments* args, TRAPS) {
302 // Check if we need to wrap a potential OS exception handler around thread 302 // Check if we need to wrap a potential OS exception handler around thread
303 // This is used for e.g. Win32 structured exception handlers 303 // This is used for e.g. Win32 structured exception handlers
304 assert(THREAD->is_Java_thread(), "only JavaThreads can make JavaCalls"); 304 assert(THREAD->is_Java_thread(), "only JavaThreads can make JavaCalls");
305 // Need to wrap each and everytime, since there might be native code down the 305 // Need to wrap each and every time, since there might be native code down the
306 // stack that has installed its own exception handlers 306 // stack that has installed its own exception handlers
307 os::os_exception_wrapper(call_helper, result, &method, args, THREAD); 307 os::os_exception_wrapper(call_helper, result, &method, args, THREAD);
308 } 308 }
309 309
310 void JavaCalls::call_helper(JavaValue* result, methodHandle* m, JavaCallArguments* args, TRAPS) { 310 void JavaCalls::call_helper(JavaValue* result, methodHandle* m, JavaCallArguments* args, TRAPS) {