DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦6fa2375c4⟧ TextFile

    Length: 804 (0x324)
    Types: TextFile
    Notes: UNIX file
    Names: »mon.h«

Derivation

└─⟦ec4aa5908⟧ Bits:30004042/swdev3.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦ec4aa5908⟧ UNIX Filesystem
    └─⟦this⟧ »sd/new/usr/include/mon.h« 

TextFile

/*	Copyright (c) 1984 AT&T	*/
/*	  All Rights Reserved  	*/

/*	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T	*/
/*	The copyright notice above does not evidence any   	*/
/*	actual or intended publication of such source code.	*/

#ident  "@(#)mon.h	1.4"

struct hdr {
#ifndef i286
	char	*lpc;
	char	*hpc;
#else
	unsigned long	lpc;
	unsigned long	hpc;
#endif
	int	nfns;
#ifdef i286
	unsigned stack;
	unsigned stacke;
#endif
};


struct cnt {
#ifndef i286
	char	*fnpc;
#else
	unsigned long	fnpc;
#endif
	long	mcnt;
};

typedef unsigned short WORD;

#define MON_OUT	"mon.out"
#define MPROGS0	(150 * sizeof(WORD))	/* 300 for pdp11, 600 for 32-bits */
#define MSCALE0	4

#ifndef i286
#define NULL	0
#else
#define NULL	0l
#define INDEX(x) ((( (unsigned long)(x) >> 3)& 0xffff0000L)|(unsigned)(x))
#endif