home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 3
/
PDCD_3.iso
/
pocketbk
/
utilsm
/
psionics
/
process
< prev
next >
Wrap
Text File
|
1995-01-17
|
7KB
|
178 lines
PSIONICS FILE - PROCESS
=======================
Processes and their properties
Last modified 1994-09-08
==============================
The Series 3 operating system is a fully multitasking one; at any time it can
be running any number of processes (up to some limit). Much useful information
about processes can be displayed with the SPY program.
Each process has a name, a task number, and a process ID. The task number runs
from 1 upwards (the Series 3 is limited to 24), and a task number can be
reused whenever a process terminates. The process ID consists of the address
of the control block for the process in kernel memory in the bottom 12 bits,
and a simple counter in the top 4 bits; this starts at 0 for the first
process to use this control block, and is incremented whenever the block is
reused.
The name of a process is normally the name of the program, followed by ".$"
and the task number as 2 decimal digits.
Each process has a priority. Non-operating system processes are limited to
priority 192; the normal priorities are 128 for foreground and 112 for
background.
System processes
----------------
There are two kinds of system processes: fixed ones and optional ones. The
fixed processes are:
SYS$NULL.$01 handles power off
SYS$MANG.$02 the process and resource manager
SYS$FSRV.$03 the file server
SYS$WSRC.$04 the window server
SYS$SHLL.$05 the process launcher and system screen
TIME.$06 the time and alarm server
The optional processes are:
SYS$NCP.$?? the remote link manager
Registers
---------
Processes may use the data registers (AX, BX, CX, DX, SI, and DI) without
restriction. The Psion operating system may move memory segments about in
memory at any time without warning; when it does so, those of the segment
registers (CS, DS, ES, and SS) that appear to the kernel to be valid will
be adjusted automatically. If it is desired to change these registers at any
other time, it should therefore be done with interrupts disabled.
OPL uses CS, DS, and SS, and these should not be altered by assembler code
invoked from with OPL. ES is not used by the OPL interpreter, and is normally
left the same as DS and SS (which are always the same). Many system calls
use data registers to hold pointers; a segment register is also used with
each such pointer. No attempt has been made in the Psionics files SYSCALLS.n
to identify which segment registers are so used, and any assembler code should
therefore exit with ES equal to DS; this should also be the case when making
system calls.
The only other values that can usefully be placed in ES are the kernel data
segment (using system call GenDataSegment), and segments created with the
system call SegCreate. To do the former, just invoke INT $8F; ES will then
point to the kernel data segment, and accesses via ES will behave just as
if done with the system call GenGetOsData (it is not possible to write in
this way). The latter is done as follows:
; Assume the segment handle is in BX.
INT $8F
MOV ES,ES:[BX]
; ES now points to the start of the segment.
; If the segment moves, ES will change automatically.
; Before returning to OPL:
CLI ; with interrupts disabled
PUSH DS ; copy DS to ES
POP ES
STI ; and allow interrupts again
Memory
------
Each process has a single segment of memory. From zero upwards, this contains:
reserved statics
stack (grows downwards)
normal statics
heap (grows upwards)
The heap is divided into allocated and free cells. The SPY program shows the
number and total byte count of each kind of cell. The kernel will remove free
cells from the end of the heap when it needs space.
The stack is initialized to all $FF; it must always hold at least 256 bytes
to allow interrupts to be processed (otherwise panic 69 will occur). A typical
stack size is $A00. The SPY program allows the unused portion of the stack to
be refilled with $FF (to allow the high water mark to be reset).
The heap consists of consecutive cells:
Offset 0 (word): length of data portion (L)
Offset 2 to L+1: data portion (whose address is returned by allocators)
@Is that right, or is it 2 to L-1 ?@
Cells are always aligned to even addresses, and for this and other reasons may
be larger than requested.
Specific memory locations
-------------------------
The following table lists some specific use of memory locations.
Offset 0 (word): initialized to $DEAD; should never change
Offset 18 (word): address of block <P18>.
Offset 34 (word): 0 = process can be terminated without warning
non-zero = application that can accept an "X" message.
Offset 36 (word): address of cstr holding the full path name of the program
being executed.
Offset 40 to 53: not used by the kernel or OPL.
Offset 58 (word): non-zero if locked (by OPL "LOCK ON" or equivalent).
Offset 64 : maximum limit of stack (if floating point emulation is
in use, the emulator uses offsets 64 to 767).
Block <P18> has the following contents:
Offset 32 (word): address of block <P18P32>
Block <P18P32> has the following contents:
Offset 12 (word): address of block <P18P32P12>
Block <P18P32P12> is created by the MINIT keyword and destroyed by the MENU
keyword. Outside this range, the block is invalid, and the pointer in the
<P18P32> block is invalid. Each MCARD keyword can move this block, thus
altering that pointer. The block has the following contents:
Offset 0 (byte): number of MCARD calls so far
Offset 1 onward: menu information blocks, in order of menu creation
Each menu information block has the following contents:
Offset 0 (word): address of secondary menu information block
Offset 2 (cstr): menu title
Each secondary menu information block has the following contents:
Offset 0 (long): [Only ever seen $7392A1DF]
Offset 4 (word): number of items in the menu
Offset 6 (long): [Only ever seen 1 so far]
Offset 10 (word): address of item table
Each item table has the following contents:
Offset 0 (byte): number of items in the menu
Offset 1 onward: item information blocks, in order of item
Each item information block has the following contents:
Offset 0 (byte): number of bytes in the block, excluding this one
Offset 1 (byte): Psion+ accelerator code (lowercased)
Offset 2 (cstr): item text
Time process
------------
The pending alarms can be located in the memory of the Time process. At some
location between offset $0A00 and $0AFF is a block with the form:
Offset 0 (long): $08040201
Offset 4 (long): $00402010
Offset 12 (word): first alarm control block
The alarm control blocks are in a circular list, with the last pointing to
offset 12 of the above block (which is not an alarm control block). Each block
has the form:
Offset 0 (word): next alarm control block
Offset 6 (word): process ID of process owning alarm
Offset 8 (byte): 0 = clock alarm, 1 = has time and date, 2 = has date
Offset 10 (long): abstime alarm expires
Offset 14 (long): abstime displayed in alarm message
Offset 28 (cstr): text displayed in alarm message
Offset 93 to 255: [unknown; alleged to be part of the block]