ck.h 927 Bytes
/**************************************************************************
 *									  *
 *		 Copyright (C) 1993, Silicon Graphics, Inc.		  *
 *									  *
 *  These coded instructions, statements, and computer programs  contain  *
 *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
 *  are protected by Federal copyright law.  They  may  not be disclosed  *
 *  to  third  parties  or copied or duplicated in any form, in whole or  *
 *  in part, without the prior written consent of Silicon Graphics, Inc.  *
 *									  *
 **************************************************************************/

/*
 *  ck.h $Revision: 1.1.1.1 $
 */

typedef struct
{
    char *label;
    char **argv;
    int argc;
    int n_clock;
    struct
    {
	int t0,t1;
	int clock_id;
	int value;
    } clock[64];
    unsigned long time;
} ck_t;

void ck(ck_t **pp0, ck_t **pp1); 
void ck_init(ck_t *p0, ck_t *p1);