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

⟦d2e0b033f⟧ TextFile

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

Derivation

└─⟦7decd0fac⟧ Bits:30004155/disk4.imd SW95713I 386/ix Software Development System Rel. 2.0
└─⟦7decd0fac⟧ 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	2.3 - 88/05/27"
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