beginio() This function takes an iorequest and passes it directly to the BEGINIO vector of the proper device. This works exactly like sendio(), but does not clear the io_flags field first. this function does not wait for the I/O to complete. createextio() and deleteextio() CreateExtIO() allocates memory for and initializes a new I/O request block of a program-specified number of bytes. The number of bytes must be the size of a legal iorequest (or extended request) or very nasty things will happen. DeleteExtIO() frees up an I/O request as allocated by CreateExtIO(). The mn_length field determines how much memory to deallocate. createport() and deleteport() CreatePort() allocates and initializes a new message port. The message list of the new port will be prepared for use via NewList(). The port will be set to signal your task when a message arrives (pa_signal). deleteport() deletes the port created by createport(). All messages that may have been attached to that port must already have been replied to. createstdio() and deletestdio() CreateStdIO() allocates memory for and initializes a new iostdreq structure. DeleteStdIO() frees up an IOStdReq allocated by CreateStdIO(). createtask() and deletetask() These functions simplify creation and deletion of subtasks by dynamically allocating and initializing the required structures and stack space. They also add the task to Exec's task list with the given name and priority. A tc_mementry list is provided so that all stack and structure memory allocated by CreateTask() is automatically deallocated when the task is removed. Before deleting a task with DeleteTask(), you must first make sure that the task is not currently executing any system code which might try to signal the task after it is gone. newlist() Prepares a List structure for use; the list will be empty and ready to use.