Changeset e06da7e in mainline for kernel/generic/include/errno.h


Ignore:
Timestamp:
2009-03-07T15:59:32Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
411b6a6
Parents:
b11ee88
Message:

If the server cannot receive a call because it supplied a bad userspace address, the kernel will immediately answer the call with EPARTY.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/errno.h

    rb11ee88 re06da7e  
    4949                                 * Used by answerbox to close the connection.
    5050                                 */
    51 #define EEXISTS         -8      /* Entry already exists */
    52 #define EBADMEM         -9      /* Bad memory pointer */
    53 #define ENOTSUP         -10     /* Not supported */
    54 #define EADDRNOTAVAIL   -11     /* Address not available. */
    55 #define ETIMEOUT        -12     /* Timeout expired */
    56 #define EINVAL          -13     /* Invalid value */
    57 #define EBUSY           -14     /* Resource is busy */
    58 #define EOVERFLOW       -15     /* The result does not fit its size. */
    59 #define EINTR           -16     /* Operation was interrupted. */
     51#define EPARTY          -8      /* The other party encountered an error when
     52                                 * receiving the call.
     53                                 */
     54#define EEXISTS         -9      /* Entry already exists */
     55#define EBADMEM         -10     /* Bad memory pointer */
     56#define ENOTSUP         -11     /* Not supported */
     57#define EADDRNOTAVAIL   -12     /* Address not available. */
     58#define ETIMEOUT        -13     /* Timeout expired */
     59#define EINVAL          -14     /* Invalid value */
     60#define EBUSY           -15     /* Resource is busy */
     61#define EOVERFLOW       -16     /* The result does not fit its size. */
     62#define EINTR           -17     /* Operation was interrupted. */
    6063
    6164#endif
Note: See TracChangeset for help on using the changeset viewer.