Changeset 43


Ignore:
Timestamp:
Dec 19, 2005, 1:39:14 PM (20 years ago)
Author:
dmik
Message:

Added OS/2-related corrections to the QProcess docs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel/qprocess.cpp

    r42 r43  
    174174    (like su and ssh).
    175175
    176     \section1 Notes for Windows users
    177 
    178     Some Windows commands, for example, \c dir, are not provided by
     176    \section1 Notes for OS/2 and Windows users
     177
     178    Some OS/2 or Windows commands, for example, \c dir, are not provided by
    179179    separate applications, but by the command interpreter.
    180180    If you attempt to use QProcess to execute these commands directly
    181181    it won't work. One possible solution is to execute the command
    182     interpreter itself (\c cmd.exe on some Windows systems), and ask
     182    interpreter itself (\c cmd.exe on OS/2 and on some Windows systems), and ask
    183183    the interpreter to execute the desired command.
    184184
     
    668668}
    669669
     670/*!
     671    \fn QProcess::PID QProcess::processIdentifier()
     672   
     673    Returns platform dependent information about the process. This can
     674    be used together with platform specific system calls.
     675
     676    Under Unix the return value is the PID of the process, or -1 if no
     677    process belongs to this object.
     678
     679    Under OS/2 the return value is the PID of the process, or (~1) if no
     680    process belongs to this object.
     681   
     682    Under Windows it is a pointer to the \c PROCESS_INFORMATION
     683    struct, or 0 if no process is belongs to this object.
     684
     685    Use of this function's return value is likely to be non-portable.
     686*/
    670687
    671688/*!
Note: See TracChangeset for help on using the changeset viewer.