mirror of
				https://github.com/prometheus/node_exporter.git
				synced 2025-08-20 18:33:52 -07:00 
			
		
		
		
	Uses godep to vendor dependencies. Godeps is not necessary during build, golang's new vendor support is used instead.
		
			
				
	
	
		
			25 lines
		
	
	
		
			591 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			591 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| // Copyright 2015 The Go Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| // +build linux
 | |
| // +build arm64
 | |
| // +build !gccgo
 | |
| 
 | |
| #include "textflag.h"
 | |
| 
 | |
| // Just jump to package syscall's implementation for all these functions.
 | |
| // The runtime may know about them.
 | |
| 
 | |
| TEXT	·Syscall(SB),NOSPLIT,$0-56
 | |
| 	B	syscall·Syscall(SB)
 | |
| 
 | |
| TEXT ·Syscall6(SB),NOSPLIT,$0-80
 | |
| 	B	syscall·Syscall6(SB)
 | |
| 
 | |
| TEXT ·RawSyscall(SB),NOSPLIT,$0-56
 | |
| 	B	syscall·RawSyscall(SB)
 | |
| 
 | |
| TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
 | |
| 	B	syscall·RawSyscall6(SB)
 |