source: trunk/Softwares/Test/Test_x006/src/c/main.c @ 144

Last change on this file since 144 was 138, checked in by rosiere, 14 years ago

1) add counters_t type for interface
2) fix in check load in load_store_unit
3) add parameters (but not yet implemented)
4) change environment and add script (distcc_env.sh ...)
5) add warning if an unser change rename flag with l.mtspr instruction
6) ...

  • Property svn:keywords set to Id
File size: 396 bytes
Line 
1// $Id: main.c 138 2010-05-12 17:34:01Z rosiere $
2
3//=====[ main ]=================================================================
4/*
5 * All thread execute this routine
6 * Initialize the thread and attribute a Workload at each thread
7 */
8
9#include <stdlib.h>
10#include <stdio.h>
11#include <unistd.h>
12#include <string.h>
13#include <time.h>
14
15int main()
16{
17  time_t tnow;
18
19  time(&tnow); printf("%s",ctime(&tnow));
20
21  exit (0);
22
23  while (1);
24}
Note: See TracBrowser for help on using the repository browser.