Setcontext
Encyclopedia
setcontext is one of a family of C
library function
s (the others being getcontext, makecontext and swapcontext) used for context control. The
pattern
s such as iterator
s, fibers
, and coroutine
s. They may be viewed as an advanced version of setjmp/longjmp; whereas the latter allows only a single non-local jump up the stack
,
, each with its own stack.
.1-2001 and the Single Unix Specification
, version 2, but not all Unix-like
operating system
s provide them. The functions and associated types are defined in the
. This includes the
s blocked in the context, and
used by the context.
state
, including all registers
and CPU
flag
s, the instruction pointer, and the stack pointer;
.
The functions are:
. Most code using
implementations, or in emulator
s.
NOTE: this example is not consistent with the manual page or the specification. The function
For get and set context, a smaller context can be handy:
This makes an infinite loop because context holds the program counter.
C (programming language)
C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system....
library function
Subroutine
In computer science, a subroutine is a portion of code within a larger program that performs a specific task and is relatively independent of the remaining code....
s (the others being getcontext, makecontext and swapcontext) used for context control. The
setcontext
family allows the implementation in C of advanced control flowControl flow
In computer science, control flow refers to the order in which the individual statements, instructions, or function calls of an imperative or a declarative program are executed or evaluated....
pattern
Design pattern
A design pattern in architecture and computer science is a formal way of documenting a solution to a design problem in a particular field of expertise. The idea was introduced by the architect Christopher Alexander in the field of architecture and has been adapted for various other disciplines,...
s such as iterator
Iterator
In computer programming, an iterator is an object that enables a programmer to traverse a container. Various types of iterators are often provided via a container's interface...
s, fibers
Fiber (computer science)
In computer science, a fiber is a particularly lightweight thread of execution.Like threads, fibers share address space. However, fibers use co-operative multitasking while threads use pre-emptive multitasking. Threads often depend on the kernel's thread scheduler to preempt a busy thread and...
, and coroutine
Coroutine
Coroutines are computer program components that generalize subroutines to allow multiple entry points for suspending and resuming execution at certain locations...
s. They may be viewed as an advanced version of setjmp/longjmp; whereas the latter allows only a single non-local jump up the stack
Call stack
In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, control stack, run-time stack, or machine stack, and is often shortened to just "the stack"...
,
setcontext
allows the creation of multiple cooperative threads of controlThread (computer science)
In computer science, a thread of execution is the smallest unit of processing that can be scheduled by an operating system. The implementation of threads and processes differs from one operating system to another, but in most cases, a thread is contained inside a process...
, each with its own stack.
Specification
setcontext
is specified in POSIXPOSIX
POSIX , an acronym for "Portable Operating System Interface", is a family of standards specified by the IEEE for maintaining compatibility between operating systems...
.1-2001 and the Single Unix Specification
Single UNIX Specification
The Single UNIX Specification is the collective name of a family of standards for computer operating systems to qualify for the name "Unix"...
, version 2, but not all Unix-like
Unix-like
A Unix-like operating system is one that behaves in a manner similar to a Unix system, while not necessarily conforming to or being certified to any version of the Single UNIX Specification....
operating system
Operating system
An operating system is a set of programs that manage computer hardware resources and provide common services for application software. The operating system is the most important type of system software in a computer system...
s provide them. The functions and associated types are defined in the
ucontext.h
system header fileHeader file
Some programming languages use header files. These files allow programmers to separate certain elements of a program's source code into reusable files. Header files commonly contain forward declarations of classes, subroutines, variables, and other identifiers...
. This includes the
ucontext_t
type, with which all four functions operate:uc_link
points to the context which will be resumed when the current context exits, if the context was created with makecontext
(a secondary context). uc_sigmask
is used to store the set of signalSignal (computing)
A signal is a limited form of inter-process communication used in Unix, Unix-like, and other POSIX-compliant operating systems. Essentially it is an asynchronous notification sent to a process in order to notify it of an event that occurred. When a signal is sent to a process, the operating system...
s blocked in the context, and
uc_stack
is the stackCall stack
In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, control stack, run-time stack, or machine stack, and is often shortened to just "the stack"...
used by the context.
uc_mcontext
stores executionExecution (computers)
Execution in computer and software engineering is the process by which a computer or a virtual machine carries out the instructions of a computer program. The instructions in the program trigger sequences of simple actions on the executing machine...
state
State (computer science)
In computer science and automata theory, a state is a unique configuration of information in a program or machine. It is a concept that occasionally extends into some forms of systems programming such as lexers and parsers....
, including all registers
Processor register
In computer architecture, a processor register is a small amount of storage available as part of a CPU or other digital processor. Such registers are addressed by mechanisms other than main memory and can be accessed more quickly...
and CPU
Central processing unit
The central processing unit is the portion of a computer system that carries out the instructions of a computer program, to perform the basic arithmetical, logical, and input/output operations of the system. The CPU plays a role somewhat analogous to the brain in the computer. The term has been in...
flag
Flag (computing)
In computer programming, flag can refer to one or more bits that are used to store a binary value or code that has an assigned meaning, but can refer to uses of other data types...
s, the instruction pointer, and the stack pointer;
mcontext_t
is an opaque typeOpaque pointer
In computer programming, an opaque pointer is a special case of an opaque data type, a datatype that is declared to be a pointer to a record or data structure of some unspecified type....
.
The functions are:
-
int setcontext(const ucontext_t *ucp)
- This function transfers control to the context in
ucp
. Execution continues from the point at which the context was stored inucp
.setcontext
does not return.-
int getcontext(ucontext_t *ucp)
-
- Saves current context into
ucp
. This function returns in two possible cases: after the initial call, or when a thread switches to the context inucp
viasetcontext
orswapcontext
. Thegetcontext
function does not provide a return value to distinguish the cases (its return value is used solely to signal error), so the programmer must use an explicit flag variable, which must not be a register variable and must be declared volatileVolatile variableIn computer programming, particularly in the C, C++, C#, and Java programming languages, a variable or object declared with the volatile keyword usually has special properties related to optimization and/or threading...
to avoid constant propagation or other compiler optimisations.-
void makecontext(ucontext_t *ucp, void *func, int argc, ...)
-
- The
makecontext
function sets up an alternate thread of control inucp
, which has previously been initialised usinggetcontext
. Theucp.uc_stack
member should be pointed to an appropriately sized stack; the constantSIGSTKSZ
is commonly used. Whenucp
is jumped to usingsetcontext
orswapcontext
, execution will begin at the entry point to the function pointed to byfunc
, withargc
arguments as specified. Whenfunc
terminates, control is returned toucp.uc_link
.-
int swapcontext(ucontext_t *oucp, ucontext_t *ucp)
-
- Transfers control to
ucp
and saves the current execution state intooucp
.
Example
The example below demonstrates an iterator usingsetcontext
. This form of example is unlikely to be widely seen; as setcontext
is somewhat cumbersome to use effectively, programmers writing cooperatively multitasked applications often choose to use a wrapper library such as GNU Portable ThreadsGNU Portable Threads
GNU Pth is a POSIX/ANSI-C based user-space thread library for UNIX platforms which provides priority-based scheduling for multithreading applications...
. Most code using
setcontext
appears in such wrapper libraries, in high-level programming languageHigh-level programming language
A high-level programming language is a programming language with strong abstraction from the details of the computer. In comparison to low-level programming languages, it may use natural language elements, be easier to use, or be from the specification of the program, making the process of...
implementations, or in emulator
Emulator
In computing, an emulator is hardware or software or both that duplicates the functions of a first computer system in a different second computer system, so that the behavior of the second system closely resembles the behavior of the first system...
s.
NOTE: this example is not consistent with the manual page or the specification. The function
makecontext
requires additional parameters to be type int
, but the example passes pointers. Thus, the example may fail on 64-bit machines (specifically LP64-architectures, where sizeof(void*) > sizeof(int)
). Theoretically these problems can be worked around, but the process for doing so is not portable.For get and set context, a smaller context can be handy:
This makes an infinite loop because context holds the program counter.
External links
- System V Contexts - The GNU C LibraryGNU C LibraryThe GNU C Library, commonly known as glibc, is the C standard library released by the GNU Project. Originally written by the Free Software Foundation for the GNU operating system, the library's development has been overseen by a committee since 2001, with Ulrich Drepper from Red Hat as the lead...
Manual - setcontext - get/set current user context FreeBSD man page.