]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Minor type fixups.
authorNicholas Nethercote <njn@valgrind.org>
Wed, 14 May 2003 14:04:39 +0000 (14:04 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Wed, 14 May 2003 14:04:39 +0000 (14:04 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1636

coregrind/vg_scheduler.c

index 1eb32bcac12059283d46a6f6710cf46543ad9c5e..04c4933cac95150d738a42ea652bfd9c063a2980 100644 (file)
@@ -97,12 +97,12 @@ static ForkHandlerEntry vg_fhstack[VG_N_FORKHANDLERSTACK];
 
 
 /* The tid of the thread currently in VG_(baseBlock). */
-static Int vg_tid_currently_in_baseBlock = VG_INVALID_THREADID;
+static ThreadId vg_tid_currently_in_baseBlock = VG_INVALID_THREADID;
 
 /* The tid either currently in baseBlock, or was in baseBlock before
    was saved it out; this is only updated when a new thread is loaded
    into the baseBlock */
-static Int vg_tid_last_in_baseBlock = VG_INVALID_THREADID;
+static ThreadId vg_tid_last_in_baseBlock = VG_INVALID_THREADID;
 
 /* vg_oursignalhandler() might longjmp().  Here's the jmp_buf. */
 jmp_buf VG_(scheduler_jmpbuf);
@@ -842,7 +842,7 @@ static
 void sched_do_syscall ( ThreadId tid )
 {
    UInt  saved_eax;
-   UInt  res, syscall_no;
+   Int   res, syscall_no;
    UInt  fd;
    void* pre_res;
    Bool  orig_fd_blockness;