Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/posix-threads.cc

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    2525#include <errno.h>
    2626#include <limits.h>
     27#ifdef HAVE_UNISTD_H
     28#include <unistd.h>     // To test for _POSIX_THREAD_PRIORITY_SCHEDULING
     29#endif
    2730
    2831#include <gcj/cni.h>
     
    320323_Jv_ThreadSetPriority (_Jv_Thread_t *data, jint prio)
    321324{
     325#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
    322326  if (data->flags & FLAG_START)
    323327    {
     
    327331      pthread_setschedparam (data->thread, SCHED_RR, &param);
    328332    }
     333#endif
    329334}
    330335
Note: See TracChangeset for help on using the changeset viewer.