]> Zhao Yanbai Git Server - minix.git/commitdiff
tests: change u32_t to uint32_t for portability 22/3022/1
authorErik van der Kouwe <erik@minix3.org>
Wed, 8 Jul 2015 07:27:30 +0000 (09:27 +0200)
committerErik van der Kouwe <erik@minix3.org>
Wed, 8 Jul 2015 07:27:30 +0000 (09:27 +0200)
Change-Id: I8ea57fff72c3b3ed02cc9d82ee295069ca299ed9

minix/tests/common.c
minix/tests/common.h

index a4e1fa03235dd301b04cb1f77f5e7b1fe07ceccd..986858f22ae6a171115415d3a9060d3e06e4c5d3 100644 (file)
@@ -170,9 +170,9 @@ printprogress(char *msg, int i, int max)
         prev_time = now;
 }
 
-void getmem(u32_t *total, u32_t *free, u32_t *cached)
+void getmem(uint32_t *total, uint32_t *free, uint32_t *cached)
 {
-        u32_t pagesize, largest;
+        uint32_t pagesize, largest;
         FILE *f = fopen("/proc/meminfo", "r");
         if(!f) return;
         if(fscanf(f, "%u %u %u %u %u", &pagesize, total, free,
index 69e3237f56659595783f33aedf8f57618234f727..1290883d26354a015e6e40d2ca87f0d5223c6542 100644 (file)
@@ -3,6 +3,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <time.h>
 #include <sys/statvfs.h>
@@ -21,6 +22,6 @@ void quit(void);
 void rm_rf_dir(int test_nr);
 void rm_rf_ppdir(int test_nr);
 void start(int test_nr);
-void getmem(u32_t *total, u32_t *free, u32_t *cached);
+void getmem(uint32_t *total, uint32_t *free, uint32_t *cached);
 
 extern int common_test_nr, errct, subtest;