DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

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

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦17e9b20c7⟧ TextFile

    Length: 2524 (0x9dc)
    Types: TextFile
    Notes: UNIX file
    Names: »segment.c«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »usr/src/gks/gks/segment.c« 

TextFile

#if SEGM > 0
#include "../h/gks.h"

#if (OP_LEVEL > 0)
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Seg *
newseg(n)			/* CREATE SEGMENT */
Segname n;
{	}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
closeg()			/* CLOSE SEGMENT */
{	}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Seg *
renseg(on, nn)		/* RENAME SEGMENT */
Segname on;
Segname	nn;
{	}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
zapseg(seg)			/* DELETE SEGMENT */
Seg	*seq;
{	}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
delseg(ws,seg)			/* DELETE SEG. FROM WORKSTATION */
Wss	*ws
Seg	*seg;
{	}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
s_segtran(seg,mat)		/* SET SEGMENT TRANSFORMATION.*/
Seg	*seg
Tmat	*mat;
{	}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*       - 
*
* rwsimon     - 11 Aug 82
*
* Environment - Univac V77, SMEX, C, GKS.
*
* Input       - 
*
* Process     - 
*
* Output      - 
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
s_segvis(seg, flg)		/* SET VISIBILITY.*/
Seg	*seg;
Bool	flg;
{	}

#endif (OP_LEVEL > 0)
#endif