Changeset View
Changeset View
Standalone View
Standalone View
sys/arm64/include/sysarch.h
| Show All 24 Lines | |||||
| * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||||
| * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||||
| * SUCH DAMAGE. | * SUCH DAMAGE. | ||||
| * | * | ||||
| * from: FreeBSD: src/sys/i386/include/sysarch.h,v 1.14 2000/09/21 | * from: FreeBSD: src/sys/i386/include/sysarch.h,v 1.14 2000/09/21 | ||||
| * $FreeBSD$ | * $FreeBSD$ | ||||
| */ | */ | ||||
| #ifdef __arm__ | |||||
| #include <arm/sysarch.h> | |||||
| #else /* !__arm__ */ | |||||
| /* | /* | ||||
| * Architecture specific syscalls (arm64) | * Architecture specific syscalls (arm64) | ||||
| */ | */ | ||||
| #ifndef _MACHINE_SYSARCH_H_ | #ifndef _MACHINE_SYSARCH_H_ | ||||
| #define _MACHINE_SYSARCH_H_ | #define _MACHINE_SYSARCH_H_ | ||||
| #ifndef _KERNEL | #ifndef _KERNEL | ||||
| __BEGIN_DECLS | __BEGIN_DECLS | ||||
| int sysarch(int _number, void *_args); | int sysarch(int _number, void *_args); | ||||
| __END_DECLS | __END_DECLS | ||||
| #endif | #endif | ||||
| #endif /* !_MACHINE_SYSARCH_H_ */ | #endif /* !_MACHINE_SYSARCH_H_ */ | ||||
| #endif /* !__arm__ */ | |||||