Changeset 1391 for branches/GNU/src/gcc/libjava/posix-threads.cc
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/posix-threads.cc
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 25 25 #include <errno.h> 26 26 #include <limits.h> 27 #ifdef HAVE_UNISTD_H 28 #include <unistd.h> // To test for _POSIX_THREAD_PRIORITY_SCHEDULING 29 #endif 27 30 28 31 #include <gcj/cni.h> … … 320 323 _Jv_ThreadSetPriority (_Jv_Thread_t *data, jint prio) 321 324 { 325 #ifdef _POSIX_THREAD_PRIORITY_SCHEDULING 322 326 if (data->flags & FLAG_START) 323 327 { … … 327 331 pthread_setschedparam (data->thread, SCHED_RR, ¶m); 328 332 } 333 #endif 329 334 } 330 335 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.