OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [trunk/] [stdalone/] [dhrystone/] [port/] [dhry_utils.h] - Rev 280

Compare with Previous | Blame | View Log

/*
 * dhry_utils.h -- utility functions
 */
 
#include "stdarg.h"
#include "iolib.h"
 
#define HZ	1000	/* 1000 clock ticks per second */
 
typedef unsigned long clock_t;
 
typedef struct tms {
  clock_t tms_utime;	/* user time */
  clock_t tms_stime;	/* system time */
  clock_t tms_cutime;	/* user time of children */
  clock_t tms_cstime;	/* system time of children */
};
 
clock_t times(struct tms *buf);
void *malloc(unsigned size);
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.