• Home
Name Date Size #Lines LOC

..--

linux/03-May-2024-13,40713,013

AUTHORSD03-May-202475 21

Android.mkD03-May-20243.6 KiB138114

Android.patchD03-May-20247.6 KiB311291

COPYRIGHTD03-May-20241.7 KiB3228

CREDITSD03-May-20244.4 KiB116112

ChangeLogD03-May-202451.5 KiB1,4391,095

ChangeLog-CVSD03-May-2024199.3 KiB5,6154,212

CleanSpec.mkD03-May-20242.2 KiB500

INSTALLD03-May-20247.5 KiB181141

MODULE_LICENSE_BSDD03-May-20240

NEWSD03-May-202413.1 KiB380335

NOTICED03-May-20241.8 KiB3228

PORTINGD03-May-20243.7 KiB7161

READMED03-May-20241.2 KiB3222

README-AndroidD03-May-2024436 159

README-linuxD03-May-20241.3 KiB3222

TODOD03-May-20241.4 KiB3331

bjm.cD03-May-20245.6 KiB216166

block.cD03-May-20246.8 KiB284221

count.cD03-May-20246.6 KiB254189

defs.hD03-May-202421.4 KiB705580

desc.cD03-May-202419.2 KiB991882

file.cD03-May-202462.1 KiB3,0912,758

import-Android.shD03-May-20241.1 KiB6452

io.cD03-May-20249.1 KiB412340

ioctl.cD03-May-20245.9 KiB216114

ioctlsort.cD03-May-20242.2 KiB7031

ipc.cD03-May-202412.1 KiB572489

mem.cD03-May-202420.8 KiB1,004825

net.cD03-May-202449.4 KiB2,3862,182

proc.cD03-May-20246 KiB261213

process.cD03-May-202494.6 KiB3,7523,408

quota.cD03-May-202419 KiB737632

resource.cD03-May-202411.6 KiB477401

scsi.cD03-May-20242.8 KiB115104

signal.cD03-May-202447.2 KiB2,1931,898

sock.cD03-May-20247.5 KiB297256

strace-graphD03-May-20248.1 KiB339248

strace.1D03-May-202420.8 KiB741711

strace.cD03-May-202465.2 KiB2,8582,317

strace.specD03-May-202416.5 KiB471357

stream.cD03-May-202430.1 KiB1,3991,241

syscall.cD03-May-202466.9 KiB2,8402,426

system.cD03-May-202460.5 KiB2,3902,170

term.cD03-May-20249.3 KiB451380

time.cD03-May-202421.3 KiB1,043931

util.cD03-May-202438.5 KiB1,7811,413

README

1This is strace 4.0, a system call tracer for SunOS 4.x, Linux, System
2V release 4, Solaris 2.x and Irix 5.x.  strace is released under a
3Berkeley-style license at the request of Paul Kranenburg; see the file
4COPYRIGHT for details.
5
6Read the INSTALL file for generic instructions on how to install
7strace.  If configure cannot guess your system configuration, you can
8specify it on the command line after the other options like this:
9
10	./configure --prefix=/usr i486-linux
11
12A single sunos4.1 binary should work on all the sun4, sun4c and sun4m
13kernel architectures.  Let me know if sun4d doesn't work.  Other
14i486-*-sysv4 systems may work with little or no tweaking.
15
16See the file NEWS for information on what has changed in recent
17versions.
18
19See the file PORTING if you like strace but it doesn't work on an
20operating system you use frequently.
21
22See the file CREDITS to see who has contributed to strace.
23
24See the file TODO if you feel like helping out.
25
26You can get the latest version of strace from its homepage at
27http://sourceforge.net/projects/strace/ .
28
29Please send bug reports and enhancements to the strace
30mailinglist at strace-devel@lists.sourceforge.net, or directly to
31Wichert Akkerman <wakkerma@debian.org>
32

README-Android

1Strace on Android
2
3The Android port of Strace does not use the configure scripts or Makefiles
4from the original source distribution.
5
6Build Strace on Android using the Android build system, like the rest
7of the system.
8
9Android-specific customizations are immortalized in Android.patch to
10ease future upgrades.
11
12This file can be regenerated using:
13
14diff -r -u -d path-to-original-unmodified-strace . | grep -v "Only in" > Android.patch
15

README-linux

1
2Strace has been ported by Branko Lankester <branko@hacktic.nl>
3to run on Linux systems.  Since then it has been greatly modified
4by various other people.
5
6If you want to compile strace on a Linux system please make sure that
7you use recent kernel headers. Strace needs those to get the proper data
8structures and constatns used by the kernel, since these can be
9different from the structures that the C library uses. Currently you
10will need at least a 2.2.7 or newer kernel.
11
12To complicate things a bit further strace might not compile if you are
13using development kernels. These tend to have headers that conflict with
14the headers from libc which makes it impossible to use them.
15
16There are three ways to compile strace with other kernel headers:
17* Specify the location in CFLAGS when running configure
18
19     CFLAGS=-I/usr/src/linux/include ./configure
20
21* you can tell make where your kernel sources are. For example if you
22  have your kernelsource in /usr/src/linux, you can invoke make like
23  this:
24
25     make CFLAGS="\$CFLAGS -I/usr/src/linux/include"
26
27  (the extra \$CFLAGS is there to make sure we don't override any CFLAGS
28  settings that configure has found).
29
30* you can link /usr/include/linux and /usr/include/asm to the
31  corresponding directories in your kernel source-tree.
32