Re: Patch 2.4.21 use propper type for pid -II

Hans-Peter Jansen (hpj@urpla.net)
Fri, 4 Jul 2003 21:28:01 +0200


Dear Walter,

try:
alias diff='diff -u'
in .bashrc, and your diff will do, what everyone want to see here.

while at it, you may also find these useful sometimes:
alias lazydiff='diff -uiwbBd'
alias drypatch='patch --dry-run'

Aliasing-ly y'rs,
Pete

On Saturday 28 June 2003 22:50, Walter Harms wrote:
> Hi liste,
> this is a small patch to fix functions that do not use the
> correct type for pid. daniele bellucci and i have worked this
> out.
>
> walter
>
> 692c692
> < static int kill_something_info(int sig, struct siginfo *info, int
> pid) ---
>
> > static int kill_something_info(int sig, struct siginfo *info, pid_t
> > pid)
>
> 1014c1014
> < sys_kill(int pid, int sig)
> ---
>
> > sys_kill(pid_t pid, int sig)
>
> 1031c1031
> < sys_tkill(int pid, int sig)
> ---
>
> > sys_tkill(pid_t pid, int sig)
>
> 1058c1058
> < sys_rt_sigqueueinfo(int pid, int sig, siginfo_t *uinfo)
> ---
>
> > sys_rt_sigqueueinfo(pid_t pid, int sig, siginfo_t *uinfo)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/