MS_$MK_TEMPORARY Domain/OS MS_$MK_TEMPORARY
NAME
ms_$mk_temporary - make a permanent object temporary
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/ms.h>
void ms_$mk_temporary(
void *&address,
status_$t *status)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/ms.ins.pas';
procedure ms_$mk_temporary(
in address: univ_ptr;
out status: status_$t);
SYNOPSIS (FORTRAN)
%include '/sys/ins/base.ins.ftn'
%include '/sys/ins/ms.ins.ftn'
integer*4 status
integer*4 address, dummy
pointer /address/ dummy
call ms_$mk_temporary(address, status)
DESCRIPTION
This call makes the permanent object mapped at address temporary by unca-
taloging its name. When ms_$mk_temporary returns, the object no longer
has a pathname and will be deleted when unmapped.
address
A pointer to a currently mapped permanent object.
status
The completion status.
SEE ALSO
ms_$attributes, ms_$mk_permanent.