15 minutes, bit better messages

This commit is contained in:
Simon Hafner
2015-04-04 16:31:50 -05:00
parent a339cb5ed5
commit c1d0b2403b
3 changed files with 8 additions and 8 deletions

View File

@@ -10,7 +10,7 @@
#include <assert.h>
#include <time.h>
#define RUNTIME (35*60)
#define RUNTIME (15*60)
typedef void (*pFunc)(void);
@@ -46,11 +46,11 @@ int main(int argc, char* argv[])
while (accumTime < runTime) {
for (i = 0; i < 10; i++)
count();
printf("1. sleeping...\n");
/* printf("1. sleeping...\n"); */
sleep(1);
for (i = 0; i < 10; i++)
status();
printf("2. sleeping...\n");
/* printf("2. sleeping...\n"); */
sleep(1);
occupiedMem();
accumTime = time((time_t*)0) - startTime;

View File

@@ -6,7 +6,7 @@ discard """
import times
import os
const RUNTIME = 35 * 60 # 35 minutes
const RUNTIME = 15 * 60 # 15 minutes
when defined(windows):
const dllname = "./shared.dll"

View File

@@ -45,17 +45,17 @@ proc status() {.exportc: "status", dynlib.} =
var a = getComm1Status()
var b = getComm2Status()
var str2: string = "$1 COM1: $2 COM2: $3" % [ptt_status, a, b]
#echo(str1)
#echo(str2)
# echo(str1)
# echo(str2)
proc count() {.exportc: "count", dynlib.} =
var temp: uint64
for i in 0..100_000:
temp += 1
gCounter += 1
#echo("gCounter: ", gCounter)
# echo("gCounter: ", gCounter)
proc occupiedMem() {.exportc: "occupiedMem", dynlib.} =
#echo("Occupied Memmory: ", getOccupiedMem())
echo("Occupied Memmory: ", getOccupiedMem())
discard