Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/external/source/unixasm/aix-power.h
Views: 11766
/*1* aix-power.h2* Copyright 2008 Ramon de Carvalho Valle <[email protected]>3*4* This library is free software; you can redistribute it and/or5* modify it under the terms of the GNU Lesser General Public6* License as published by the Free Software Foundation; either7* version 2.1 of the License, or (at your option) any later version.8*9* This library is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU12* Lesser General Public License for more details.13*14* You should have received a copy of the GNU Lesser General Public15* License along with this library; if not, write to the Free Software16* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA17*18*/1920#ifndef AIX_POWER_H21#define AIX_POWER_H2223#define __CAL 20472425#if defined(AIX614)26#define __NR_execve = 727#define __NR_getpeername = 21128#define __NR_accept = 23729#define __NR_listen = 24030#define __NR_bind = 24231#define __NR_socket = 24332#define __NR_connect = 24433#define __NR_close = 27834#define __NR_kfcntl = 65835#endif3637#if defined(AIX613)38#define __NR_execve = 739#define __NR_getpeername = 20540#define __NR_accept = 23241#define __NR_listen = 23542#define __NR_bind = 23743#define __NR_socket = 23844#define __NR_connect = 23945#define __NR_close = 27246#define __NR_kfcntl = 64447#endif4849#if defined(AIX612)50#define __NR_execve = 751#define __NR_getpeername = 20552#define __NR_accept = 23253#define __NR_listen = 23554#define __NR_bind = 23755#define __NR_socket = 23856#define __NR_connect = 23957#define __NR_close = 27258#define __NR_kfcntl = 63559#endif6061#if defined(AIX611)62#define __NR_execve = 763#define __NR_getpeername = 20264#define __NR_accept = 22965#define __NR_listen = 23266#define __NR_bind = 23467#define __NR_socket = 23568#define __NR_connect = 23669#define __NR_close = 26970#define __NR_kfcntl = 61471#endif7273#if defined(AIX610)74#define __NR_execve = 675#define __NR_getpeername = 20376#define __NR_accept = 22977#define __NR_listen = 23278#define __NR_bind = 23479#define __NR_socket = 23580#define __NR_connect = 23681#define __NR_close = 26982#define __NR_kfcntl = 61783#endif8485#if defined(AIX5310) || defined(AIX539) || defined(AIX538) || defined(AIX537)86#define __NR_execve = 687#define __NR_getpeername = 19888#define __NR_accept = 21489#define __NR_listen = 21590#define __NR_bind = 21691#define __NR_socket = 21792#define __NR_connect = 21893#define __NR_close = 24594#define __NR_kfcntl = 49395#endif9697#define __NC_execve -(__CAL - __NR_execve)98#define __NC_getpeername -(__CAL - __NR_getpeername)99#define __NC_accept -(__CAL - __NR_accept)100#define __NC_listen -(__CAL - __NR_listen)101#define __NC_bind -(__CAL - __NR_bind)102#define __NC_socket -(__CAL - __NR_socket)103#define __NC_connect -(__CAL - __NR_connect)104#define __NC_close -(__CAL - __NR_close)105#define __NC_kfcntl -(__CAL - __NR_kfcntl)106107#endif108109110111