summaryrefslogblamecommitdiffstats
path: root/spec/rtems/status/if/code-to-errno.yml
blob: 40547ff4cd72c30a51ef421b0819b02a627d7676 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                     

                                                               

                                                                         
           
          
              
           
                                        

               






                           
            


                                


                                         
       


                  
                                             

                  
                                                 

                  
                                                  

                  
                                              

                  

                                                      

                  









                                                           

                  
                                              

                  
                                            

                  

                                                   

                  
                                                        

                  
                                          
                    
               
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
brief: |
  Maps the specified RTEMS status code to a POSIX error number.
copyrights:
- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
definition:
  default:
    body: null
    params:
    - ${code:/name} ${.:/params[0]/name}
    return: int
  variants: []
description: null
enabled-by: true
interface-type: function
links:
- role: interface-placement
  uid: header
- role: interface-ingroup
  uid: group
name: rtems_status_code_to_errno
notes: null
params:
- description: is the status code to map.
  dir: null
  name: status_code
return:
  return: null
  return-values:
  - description: |
      The status code is ${successful:/name}.
    value: '0'
  - description: |
      The status code is ${invalid-number:/name}.
    value: EBADF
  - description: |
      The status code is ${resource-in-use:/name}.
    value: EBUSY
  - description: |
      The status code is ${interrupted:/name}.
    value: EINTR
  - description: |
      The status code is ${invalid-clock:/name},
      ${invalid-name:/name}, or ${invalid-node:/name}.
    value: EINVAL
  - description: |
      The status code is ${already-suspended:/name},
      ${called-from-isr:/name},
      ${illegal-on-remote-object:/name},
      ${illegal-on-self:/name}, ${incorrect-state:/name},
      ${internal-error:/name}, ${invalid-address:/name},
      ${invalid-id:/name}, ${invalid-priority:/name},
      ${invalid-size:/name}, ${io-error:/name},
      ${mp-not-configured:/name}, ${not-defined:/name},
      ${object-was-deleted:/name}, ${proxy-blocking:/name},
      ${task-exitted:/name}, or ${too-many:/name}.
    value: EIO
  - description: |
      The status code is ${unsatisfied:/name}.
    value: ENODEV
  - description: |
      The status code is ${no-memory:/name}.
    value: ENOMEM
  - description: |
      The status code is ${not-configured:/name} or
      ${not-implemented:/name}.
    value: ENOSYS
  - description: |
      The status code is ${not-owner-of-resource:/name}.
    value: EPERM
  - description: |
      The status code is ${timeout:/name}.
    value: ETIMEDOUT
type: interface