File: longlong-u64.diff

package info (click to toggle)
rt-app 1.0-1.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: ansic: 2,238; python: 260; sh: 129; makefile: 33
file content (16 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
nsigned long long is not 64bits on mips64 or powerpc64 unless
Just explicitly ask for __u64 so we know what we mean

Index: rt-app-1.0/src/rt-app_utils.h
===================================================================
--- rt-app-1.0.orig/src/rt-app_utils.h
+++ rt-app-1.0/src/rt-app_utils.h
@@ -118,7 +118,7 @@ log_timing(FILE *handler, timing_point_t
 pid_t
 gettid(void);
 
-unsigned long long
+__u64
 timespec_to_nsec(struct timespec *ts);
 #endif