shutdown_system()

Shut down the system

Synopsis:

#include <sys/shutdown.h>

void shutdown_system( int type,
                      int flags );

Arguments:

type
The type of shutdown; one of the following:
  • SHUTDOWN_REBOOT — do a cold reboot.
  • SHUTDOWN_SYSTEM — power off the system in such a way as to maintain the realtime clock.
  • SHUTDOWN_KILLSWITCH — usually the same as SHUTDOWN_SYSTEM, but is used in cases where SHUTDOWN_SYSTEM doesn't actually power off the system. The realtime clock isn't maintained.
  • SHUTDOWN_WARMREBOOT — do a warm reboot, if possible.
flags
Zero or more of the following bits:
  • FLAG_FAST — do a "fast" shutdown.
  • FLAG_DEBUG — debug mode; don't actually shut down.
  • FLAG_VERBOSE — be verbose.
  • FLAG_VERY_VERBOSE — be very verbose.
  • FLAG_NONROOT — ignore root privileges (not used in the default library).
  • FLAG_UNATTENDED — don't ask for options (not used in the default library).
  • FLAG_NO_DAEMON — don't daemonize the process.

Library:

libshutdown.a

Use the -l shutdown option to qcc to link against this library.

Description:

The shutdown_system() function reboots or shuts down the system, depending on the type argument. It tries first to shut down any processes, in a reasonable order. In general terms, it determines the class of each process listed under /proc (either based on the process's name or the class returned by the shutdown_classify() callout—see below), sorts the processes by class, and then does the following for each process:

  1. It sends a SIGTERM signal to the process.
  2. (QNX Neutrino 6.6 or later) It sends a SIGCONT signal, in case the process was stopped.
  3. It waits for a period of time (reduced if you specify the FLAG_FAST flag).
  4. It sends a SIGKILL signal to the process if it still exists and is in the CLASS_UNKNOWN, CLASS_GRAPHICAL_APP, or CLASS_APP class.

The interval between the SIGTERM and SIGKILL signals allows processes that have elected to catch the SIGTERM signal to perform any cleanup they need to do before the system is rebooted. The SIGCONT allows a stopped process to be terminated by the queued SIGTERM or the subsequent SIGKILL.

You can customize shutdown_system() by providing your own callouts to override those in the library:

This library is used by shutdown, with callouts provided by the utility.

You can define your callouts in the same file as your call to shutdown_system() or put them in a library that you link against before libshutdown.a.

shutdown_classify() callout

ProcessClass_t shutdown_classify( ProcessInfo_t const *pip );

This callout determines the class of an application, based on the information provided in the structure that pip points to. The shutdown_system() function recognizes some applications by their name or other information, and calls shutdown_classify() to determine the type of applications that it doesn't recognize.

The ProcessInfo_t structure includes various fields, but only the following are set when this callout is invoked:

pid_t pid
The process ID.
char *name
The name of the process.
Note: Don't modify any of the members of this structure.

The shutdown_classify() callout should return one of the defined class types:

The default stub unconditionally returns CLASS_UNKNOWN.

shutdown_display() callout

void shutdown_display( int type,
                       DisplayData_t const *display);

This callout can display the name of a process or class of processes being shut down, depending on the type argument:

The default stub does nothing.

The DisplayData_t structure provides information about what's currently being shut down. It's defined as follows:

typedef union
{
    int proc_class;         /* use for DISPLAY_CLASS */
    char const *proc_name;  /* use for DISPLAY_PROC */
} DisplayData_t;

The proc_class member is one of the class types that shutdown_classify() returns.

shutdown_done() callout

void shutdown_done( int type );

This callout is called before shutting down the display processes, but after shutting down the rest. The type argument is the typed passed to shutdown_system().

The default stub does nothing.

shutdown_error() callout

void shutdown_error( char const *msg );

The library invokes this callout if an error has occurred; the library exits, indicating a failure, after issuing this callout. The default stub does nothing.

shutdown_process() callout

void shutdown_process(void);

This callout is called to process intermediate events during the shutdown. The default stub does nothing.

shutdown_progress() callout

void shutdown_progress( int done,
                        int total );

This callout is called to display the progress being made at shutting down. The done argument indicates the number of processes already shut down, out of the given total.

The default stub does nothing.

shutdown_prompt() callout

int shutdown_prompt(char const *name,pid_t pid);

This callout is called to deal with a process that isn't responding. It should return one of the following to indicate to the library how to deal with the errant process:

The default stub returns PROMPT_SKIP.

Classification:

QNX Neutrino

Safety:  
Cancellation point No
Interrupt handler No
Signal handler No
Thread No