The NetBSD Project

CVS log for src/sys/kern/kern_syscall.c

[BACK] Up to [cvs.NetBSD.org] / src / sys / kern

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.18.2.1 / (download) - annotate - [select for diffs], Wed Sep 2 12:42:32 2020 UTC (2 years, 8 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE
Changes since 1.18: +14 -7 lines
Diff to previous 1.18 (colored) next main 1.19 (colored)

Pull up following revision(s) (requested by christos in ticket #1072):

	sys/kern/kern_syscall.c: revision 1.21

PR/55629: Andreas Gustafsson: Don't crash when an emulation does not provide
e_dtrace_syscall (like compat_netbsd32)

Revision 1.21 / (download) - annotate - [select for diffs], Mon Aug 31 19:51:30 2020 UTC (2 years, 8 months ago) by christos
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, netbsd-10-base, netbsd-10, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Changes since 1.20: +14 -7 lines
Diff to previous 1.20 (colored)

PR/55629: Andreas Gustafsson: Don't crash when an emulation does not provide
e_dtrace_syscall (like compat_netbsd32)

Revision 1.20 / (download) - annotate - [select for diffs], Sat May 23 23:42:43 2020 UTC (3 years ago) by ad
Branch: MAIN
Changes since 1.19: +4 -4 lines
Diff to previous 1.19 (colored)

Move proc_lock into the data segment.  It was dynamically allocated because
at the time we had mutex_obj_alloc() but not __cacheline_aligned.

Revision 1.16.14.2 / (download) - annotate - [select for diffs], Mon Apr 13 08:05:04 2020 UTC (3 years, 1 month ago) by martin
Branch: phil-wifi
Changes since 1.16.14.1: +3 -5 lines
Diff to previous 1.16.14.1 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)

Mostly merge changes from HEAD upto 20200411

Revision 1.19 / (download) - annotate - [select for diffs], Sun Oct 6 15:11:17 2019 UTC (3 years, 7 months ago) by uwe
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Changes since 1.18: +3 -5 lines
Diff to previous 1.18 (colored)

xc_barrier - convenience function to xc_broadcast() a nop.

Make the intent more clear and also avoid a bunch of (xcfunc_t)nullop
casts that gcc 8 -Wcast-function-type is not happy about.

Revision 1.16.14.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:09:03 2019 UTC (3 years, 11 months ago) by christos
Branch: phil-wifi
Changes since 1.16: +15 -8 lines
Diff to previous 1.16 (colored)

Sync with HEAD

Revision 1.18 / (download) - annotate - [select for diffs], Mon May 6 08:05:03 2019 UTC (4 years ago) by kamil
Branch: MAIN
CVS Tags: phil-wifi-20190609, netbsd-9-base, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1
Branch point for: netbsd-9
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored)

Ship with syscall information with SIGTRAP TRAP_SCE/TRAP_SCX for tracers

Expand siginfo_t (struct size not changed) to new values for
SIGTRAP TRAP_SCE/TRAP_SCX events.

 - si_sysnum  -- syscall number (int)
 - si_retval  -- return value (2 x int)
 - si_error   -- error code (int)
 - si_args    -- syscall arguments (8 x uint64_t)

TRAP_SCE delivers si_sysnum and si_args.

TRAP_SCX delivers si_sysnum, si_retval, si_error and si_args.

Users: debuggers (like GDB) and syscall tracers (like strace, truss).

This MI interface is similar to the Linux kernel proposal of
PTRACE_GET_SYSCALL_INFO by the strace developer team.

Revision 1.16.12.1 / (download) - annotate - [select for diffs], Thu Sep 6 06:56:42 2018 UTC (4 years, 8 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.16: +13 -6 lines
Diff to previous 1.16 (colored) next main 1.17 (colored)

Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)

Revision 1.17 / (download) - annotate - [select for diffs], Fri Aug 10 21:44:59 2018 UTC (4 years, 9 months ago) by pgoyette
Branch: MAIN
CVS Tags: pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, isaki-audio2-base, isaki-audio2
Changes since 1.16: +13 -6 lines
Diff to previous 1.16 (colored)

Allow syscall_establish() to install new syscalls when the existing
entry-point is either sys_nomodule or sys_nosys.  Update the
makesyscalls.sh script to create a const array of bits to allow
syscall_disestablish() to properly restore the original entry-point.
Update all the initializers of struct emul to initialize the pointer
to the bit array struct emul.

XXX Regen of all files created by makesyscalls.sh will come soon,
XXX followed by a kernel version bump (since struct emul is being
XXX modified).

This commit should address PR kern/45781 and also removes the need
for the work-around for that PR in file

	sys/arch/usermode/modules/syscallemu/syscallemu.c

Revision 1.7.2.2 / (download) - annotate - [select for diffs], Sun Dec 3 11:38:44 2017 UTC (5 years, 5 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.7.2.1: +33 -159 lines
Diff to previous 1.7.2.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored)

update from HEAD

Revision 1.9.6.4 / (download) - annotate - [select for diffs], Mon Aug 28 17:53:07 2017 UTC (5 years, 9 months ago) by skrll
Branch: nick-nhusb
Changes since 1.9.6.3: +6 -5 lines
Diff to previous 1.9.6.3 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored)

Sync with HEAD

Revision 1.14.2.1 / (download) - annotate - [select for diffs], Wed Apr 26 02:53:27 2017 UTC (6 years, 1 month ago) by pgoyette
Branch: pgoyette-localcount
Changes since 1.14: +6 -5 lines
Diff to previous 1.14 (colored) next main 1.15 (colored)

Sync with HEAD

Revision 1.14.4.1 / (download) - annotate - [select for diffs], Fri Apr 21 16:54:02 2017 UTC (6 years, 1 month ago) by bouyer
Branch: bouyer-socketcan
Changes since 1.14: +6 -5 lines
Diff to previous 1.14 (colored) next main 1.15 (colored)

Sync with HEAD

Revision 1.16 / (download) - annotate - [select for diffs], Fri Mar 24 17:40:44 2017 UTC (6 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-20170426, pgoyette-compat-base, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.15: +4 -4 lines
Diff to previous 1.15 (colored)

Instead of copying parts of sigswitch to process_stoptrace, use it directly.
Rename process_stoptrace -> proc_stoptrace and put it in kern_sig.c so we
don't need to expose any more functions from it.

Revision 1.15 / (download) - annotate - [select for diffs], Thu Mar 23 21:59:55 2017 UTC (6 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.14: +6 -5 lines
Diff to previous 1.14 (colored)

kern/5201{2,8,9}: Fix PT_SYSCALL stopping.
1. Supply the siginfo we expect TRAP_SC{E,X} to process_stoptrace() and set it.
2. Change the second argument of proc_stop from notify, to now meaning that
   we want to stop right now. Wait in process_stoptrace until that has happened.
3. While here, fix the locking order in process_stoptrace().

Revision 1.9.6.3 / (download) - annotate - [select for diffs], Sun Dec 27 12:10:05 2015 UTC (7 years, 5 months ago) by skrll
Branch: nick-nhusb
Changes since 1.9.6.2: +10 -10 lines
Diff to previous 1.9.6.2 (colored) to branchpoint 1.9 (colored)

Sync with HEAD (as of 26th Dec)

Revision 1.14 / (download) - annotate - [select for diffs], Mon Nov 30 23:34:47 2015 UTC (7 years, 5 months ago) by pgoyette
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, localcount-20160914, bouyer-socketcan-base
Branch point for: pgoyette-localcount, bouyer-socketcan
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored)

KNF - Thanks, christos

Revision 1.13 / (download) - annotate - [select for diffs], Mon Nov 30 23:17:40 2015 UTC (7 years, 5 months ago) by pgoyette
Branch: MAIN
Changes since 1.12: +4 -4 lines
Diff to previous 1.12 (colored)

Rename sc_auto to sc_autoload at suggestion of christos@

Revision 1.12 / (download) - annotate - [select for diffs], Mon Nov 30 22:47:19 2015 UTC (7 years, 5 months ago) by pgoyette
Branch: MAIN
Changes since 1.11: +11 -11 lines
Diff to previous 1.11 (colored)

Make the list of syscalls which can trigger a module autoload an
attribute of each emulation, rather than having a single global
list which applies only to the default emulation.

This changes 'struct emul' so

        Welcome to 7.99.23 !

Revision 1.9.6.2 / (download) - annotate - [select for diffs], Sat Jun 6 14:40:21 2015 UTC (7 years, 11 months ago) by skrll
Branch: nick-nhusb
Changes since 1.9.6.1: +9 -152 lines
Diff to previous 1.9.6.1 (colored) to branchpoint 1.9 (colored)

Sync with HEAD

Revision 1.11 / (download) - annotate - [select for diffs], Sat May 9 05:56:36 2015 UTC (8 years ago) by pgoyette
Branch: MAIN
CVS Tags: nick-nhusb-base-20150921, nick-nhusb-base-20150606
Changes since 1.10: +7 -150 lines
Diff to previous 1.10 (colored)

Use the generated list of auto-loadable syscalls rather than our own
hard-coded list.

Revision 1.9.6.1 / (download) - annotate - [select for diffs], Mon Apr 6 15:18:20 2015 UTC (8 years, 1 month ago) by skrll
Branch: nick-nhusb
Changes since 1.9: +22 -6 lines
Diff to previous 1.9 (colored)

Sync with HEAD

Revision 1.10 / (download) - annotate - [select for diffs], Sat Mar 7 16:38:07 2015 UTC (8 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: nick-nhusb-base-20150406
Changes since 1.9: +22 -6 lines
Diff to previous 1.9 (colored)

Adjust for systrace based on the FreeBSD code:
- create new file systrace_args.c that use used to convert the syscall
  arguments to an array, and functions that print the types of the
  entry and return arguments.
- call the systrace probe from the trace_enter and trace_exit functions

Revision 1.7.2.1 / (download) - annotate - [select for diffs], Wed Aug 20 00:04:29 2014 UTC (8 years, 9 months ago) by tls
Branch: tls-maxphys
Changes since 1.7: +88 -2 lines
Diff to previous 1.7 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.5.8.3 / (download) - annotate - [select for diffs], Thu May 22 11:41:03 2014 UTC (9 years ago) by yamt
Branch: yamt-pagecache
Changes since 1.5.8.2: +88 -2 lines
Diff to previous 1.5.8.2 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)

sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.7.4.1 / (download) - annotate - [select for diffs], Sun May 18 17:46:07 2014 UTC (9 years ago) by rmind
Branch: rmind-smpnet
Changes since 1.7: +88 -2 lines
Diff to previous 1.7 (colored) next main 1.8 (colored)

sync with head

Revision 1.9 / (download) - annotate - [select for diffs], Sat Dec 14 06:27:57 2013 UTC (9 years, 5 months ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, nick-nhusb-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Branch point for: nick-nhusb
Changes since 1.8: +3 -2 lines
Diff to previous 1.8 (colored)

Add SYS_compat_60__lwp_park to the list of syscalls that can be resolved by loading kernel modules.

This seems to address my PR kern/48027

Revision 1.8 / (download) - annotate - [select for diffs], Mon Dec 9 16:49:43 2013 UTC (9 years, 5 months ago) by pooka
Branch: MAIN
Changes since 1.7: +87 -2 lines
Diff to previous 1.7 (colored)

Group more syscall related routines together (kern_subr -> kern_syscall)

Revision 1.5.12.2 / (download) - annotate - [select for diffs], Sat Jun 2 11:09:33 2012 UTC (10 years, 11 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.5.12.1: +1 -0 lines
Diff to previous 1.5.12.1 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)

sync to latest -current.

Revision 1.5.8.2 / (download) - annotate - [select for diffs], Wed May 23 10:08:11 2012 UTC (11 years ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.5.8.1: +3 -2 lines
Diff to previous 1.5.8.1 (colored) to branchpoint 1.5 (colored)

sync with head.

Revision 1.7 / (download) - annotate - [select for diffs], Sat May 5 19:37:37 2012 UTC (11 years ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900, jmcneill-usbmp-base10, agc-symver-base, agc-symver
Branch point for: tls-maxphys, rmind-smpnet
Changes since 1.6: +3 -2 lines
Diff to previous 1.6 (colored)

Add a new type of syscall "EXTERN" which is meant for modules that live
outside the tree (in pkgsrc). Use it to define afssys (210) which has
been reserved for years, and make it autoload the "openafs" module.

Revision 1.5.8.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:08:26 2012 UTC (11 years, 1 month ago) by yamt
Branch: yamt-pagecache
Changes since 1.5: +3 -2 lines
Diff to previous 1.5 (colored)

sync with head

Revision 1.5.12.1 / (download) - annotate - [select for diffs], Sun Mar 11 01:52:30 2012 UTC (11 years, 2 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.5: +3 -2 lines
Diff to previous 1.5 (colored)

sync to latest -current

Revision 1.6 / (download) - annotate - [select for diffs], Thu Mar 8 21:59:30 2012 UTC (11 years, 2 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base4, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base7
Changes since 1.5: +3 -2 lines
Diff to previous 1.5 (colored)

Implement sem_timedwait.

Revision 1.4.4.3 / (download) - annotate - [select for diffs], Sat Mar 5 20:55:16 2011 UTC (12 years, 2 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.4.4.2: +9 -8 lines
Diff to previous 1.4.4.2 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

sync with head

Revision 1.4.2.3 / (download) - annotate - [select for diffs], Fri Oct 22 07:22:27 2010 UTC (12 years, 7 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.4.2.2: +9 -8 lines
Diff to previous 1.4.2.2 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

Sync with HEAD (-D20101022).

Revision 1.4.6.3 / (download) - annotate - [select for diffs], Sat Oct 9 03:32:31 2010 UTC (12 years, 7 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.4.6.2: +11 -10 lines
Diff to previous 1.4.6.2 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

sync with head

Revision 1.5 / (download) - annotate - [select for diffs], Sat Aug 21 13:19:39 2010 UTC (12 years, 9 months ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, yamt-nfs-mp-base11, uebayasi-xip-base4, uebayasi-xip-base3, rmind-uvmplock-nbase, rmind-uvmplock-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, matt-mips64-premerge-20101231, jruoho-x86intr-base, jruoho-x86intr, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base, jmcneill-audiomp3-base, jmcneill-audiomp3, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: yamt-pagecache, jmcneill-usbmp
Changes since 1.4: +11 -10 lines
Diff to previous 1.4 (colored)

Update the rest of the kernel to conform to the module subsystem's new
locking protocol.

Revision 1.4.6.2 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:41 2010 UTC (12 years, 9 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.4.6.1: +333 -0 lines
Diff to previous 1.4.6.1 (colored) to branchpoint 1.4 (colored)

sync with head.

Revision 1.4.4.2 / (download) - annotate - [select for diffs], Sun May 30 05:17:57 2010 UTC (13 years ago) by rmind
Branch: rmind-uvmplock
Changes since 1.4.4.1: +333 -0 lines
Diff to previous 1.4.4.1 (colored) to branchpoint 1.4 (colored)

sync with head

Revision 1.4.2.2 / (download) - annotate - [select for diffs], Fri Apr 30 14:44:11 2010 UTC (13 years, 1 month ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.4.2.1: +333 -0 lines
Diff to previous 1.4.2.1 (colored) to branchpoint 1.4 (colored)

Sync with HEAD.

Revision 1.4.6.1, Thu Apr 15 20:46:08 2010 UTC (13 years, 1 month ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.4: +0 -333 lines
FILE REMOVED

file kern_syscall.c was added on branch yamt-nfs-mp on 2010-08-11 22:54:41 +0000

Revision 1.4.4.1, Thu Apr 15 20:46:08 2010 UTC (13 years, 1 month ago) by rmind
Branch: rmind-uvmplock
Changes since 1.4: +0 -333 lines
FILE REMOVED

file kern_syscall.c was added on branch rmind-uvmplock on 2010-05-30 05:17:57 +0000

Revision 1.4.2.1, Thu Apr 15 20:46:08 2010 UTC (13 years, 1 month ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.4: +0 -333 lines
FILE REMOVED

file kern_syscall.c was added on branch uebayasi-xip on 2010-04-30 14:44:11 +0000

Revision 1.4 / (download) - annotate - [select for diffs], Thu Apr 15 20:46:08 2010 UTC (13 years, 1 month ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base10, uebayasi-xip-base2, uebayasi-xip-base1
Branch point for: yamt-nfs-mp, uebayasi-xip, rmind-uvmplock
Changes since 1.3: +3 -2 lines
Diff to previous 1.3 (colored)

will it include, that is the question

(to everyone's disappointment on some archs it didn't)

Revision 1.3 / (download) - annotate - [select for diffs], Wed Apr 14 15:15:37 2010 UTC (13 years, 1 month ago) by pooka
Branch: MAIN
Changes since 1.2: +7 -2 lines
Diff to previous 1.2 (colored)

Need a few funny #defines in kern_syscall.c too.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Apr 14 15:12:44 2010 UTC (13 years, 1 month ago) by pooka
Branch: MAIN
Changes since 1.1: +4 -2 lines
Diff to previous 1.1 (colored)

need opt_modular.h in kern_syscall

Revision 1.1 / (download) - annotate - [select for diffs], Wed Apr 14 14:46:59 2010 UTC (13 years, 1 month ago) by pooka
Branch: MAIN

Move routines related to syscall establishment from kern_subr.c and
kern_stub.c to kern_syscall.c.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>