This file is indexed.

/usr/share/jed/lib/aprocess.sl is in jed-common 1:0.99.19-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
define aprocess_stringify_status (pid, flags, status)
{
   variable str;

   switch (flags)
     { case 2: "stopped by signal";}
     { case 4: "exit";}
     { case 8: "killed by signal";}
     {
	"??";
     }
   str = ();
   return sprintf ("%s %d", str, status);
}