Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.8 15 lines 327 B view raw
1#!/bin/sh 2 3in="$1" 4out="$2" 5 6grep '^[0-9]' "$in" | sort -n | ( 7 while read nr abi name entry compat; do 8 abi=`echo "$abi" | tr '[a-z]' '[A-Z]'` 9 if [ -n "$compat" ]; then 10 echo "__SYSCALL_${abi}($nr, $entry, $compat)" 11 elif [ -n "$entry" ]; then 12 echo "__SYSCALL_${abi}($nr, $entry, $entry)" 13 fi 14 done 15) > "$out"