L4Re/departure

Annotated libsystypes/idl/opener.idl

491:fbac8f26ad0e
20 months ago Paul Boddie Changed the process server to act as a plain Opener object, yielding a context through which program invocation details are communicated. Such details include program arguments which are now, once again, passed to the created process. When starting a process, only a collection of argument strings, this including the program filename, are now provided. This is to permit the indication of programs accessible to the process creator that are not necessarily resident in the filesystem of the initiating task.
paul@181 1
/* An interface providing a way of opening filesystem objects. */
paul@181 2
paul@181 3
interface Opener
paul@181 4
{
paul@181 5
  /* Obtain an opener context for subsequent open operations. */
paul@181 6
paul@181 7
  [opcode(13)] void context(out cap context);
paul@181 8
};