* src/threads/native/threads.c, src/threads/native/threads.c: Further
authoredwin <none@none>
Sat, 13 May 2006 23:10:21 +0000 (23:10 +0000)
committeredwin <none@none>
Sat, 13 May 2006 23:10:21 +0000 (23:10 +0000)
commit4d7aaf786624fce62ea628c3790d5223150af9a4
treebd3084beea46190fb5d90273babddc348887ab71
parent2387631c383529898674ff25d076735457bd94cc
* src/threads/native/threads.c, src/threads/native/threads.c: Further
cleanup. Still no functional changes.
Renamed external symbols are listed below.

* src/threads/native/critical.h, src/threads/native/critical.c: Cleanup.

* src/threads/native/lock.h: Cleanup.

* src/vm/jit/profile/profile.c (thread_sleep): Renamed to threads_sleep.

* src/vm/vm.c (joinAllThreads): Renamed to threads_join_all_threads.

* src/native/jni.c (thread_getself): Renamed to
threads_get_current_threadobject.

* src/native/vm/VMThread.c (thread): Typedef `thread` has been removed.
(interruptThread): Renamed to threads_interrupt_thread.
(isInterruptedThread): Renamed to threads_thread_has_been_interrupted.
(setPriorityThread): Renamed to threads_java_lang_Thread_set_priority.
(yieldThread): Renamed to threads_yield.
(interruptedThread): Renamed to threads_check_if_interrupted_and_reset.

* src/native/jvmti/cacaodbg.c (thread_getself): Renamed to
threads_get_current_threadobject.
(setthreadobject): Renamed to threads_set_current_threadobject.

* src/native/jvmti/jvmti.c (setthreadobject): Renamed to
threads_set_current_threadobject.

* src/threads/green/threads.h (yieldThread): Renamed to threads_yield.
(setPriorityThread): Renamed to threads_java_lang_Thread_set_priority.

* src/threads/green/threads.c (yieldThread): Renamed to threads_yield.
(setPriorityThread): Renamed to threads_java_lang_Thread_set_priority.
13 files changed:
src/native/jni.c
src/native/jvmti/cacaodbg.c
src/native/jvmti/jvmti.c
src/native/vm/VMThread.c
src/threads/green/threads.c
src/threads/green/threads.h
src/threads/native/critical.c
src/threads/native/critical.h
src/threads/native/lock.h
src/threads/native/threads.c
src/threads/native/threads.h
src/vm/jit/profile/profile.c
src/vm/vm.c