mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-08-05 00:03:33 +00:00
CRIU follows Linux kernel coding style. This patch updates the architecture-specific code for MIPS to use tab indentation, add whitespace between closing parenthesis and open bracket, and changes the mode of source files from 755 to 644. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
14 lines
271 B
ArmAsm
14 lines
271 B
ArmAsm
|
|
#include "common/asm/linkage.h"
|
|
|
|
.section .head.text, "ax"
|
|
ENTRY(__export_parasite_head_start)
|
|
.set push
|
|
.set noreorder
|
|
jal parasite_service
|
|
nop
|
|
.byte 0x0d, 0x00, 0x00, 0x00 //break
|
|
.set pop
|
|
// .byte 0x40,0x01,0x00,0x00 //pause
|
|
END(__export_parasite_head_start)
|
|
|