Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-17 Thread David Xu
The following reply was made to PR kern/177624; it has been noted by GNATS. From: David Xu To: Bruce Evans Cc: freebsd-gnats-sub...@freebsd.org, freebsd-bugs@FreeBSD.org, Brian Demsky Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Wed, 17 Apr 2013 17:38:02

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-17 Thread David Xu
I have worked out a patch: http://people.freebsd.org/~davidxu/patch/libc_swapcontext.diff ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebs

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-06 Thread David Xu
The following reply was made to PR misc/177624; it has been noted by GNATS. From: David Xu To: Bruce Evans Cc: Brian Demsky , freebsd-bugs@FreeBSD.org, freebsd-gnats-sub...@freebsd.org Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Sun, 07 Apr 2013 10:41:29

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-06 Thread David Xu
On 2013/04/05 03:38, Bruce Evans wrote: On Thu, 4 Apr 2013, Brian Demsky wrote: On Apr 4, 2013, at 8:16 AM, Bruce Evans wrote: On Fri, 5 Apr 2013, Bruce Evans wrote: On Thu, 4 Apr 2013, Brian Demsky wrote: Description: Here is the code for swap context: int swapcontext(ucontext_t *oucp,

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Bruce Evans
The following reply was made to PR misc/177624; it has been noted by GNATS. From: Bruce Evans To: Brian Demsky Cc: Bruce Evans , freebsd-bugs@FreeBSD.org, freebsd-gnats-sub...@freebsd.org Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Fri, 5 Apr 2013 06:38:51

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Bruce Evans
On Thu, 4 Apr 2013, Brian Demsky wrote: On Apr 4, 2013, at 8:16 AM, Bruce Evans wrote: On Fri, 5 Apr 2013, Bruce Evans wrote: On Thu, 4 Apr 2013, Brian Demsky wrote: Description: Here is the code for swap context: int swapcontext(ucontext_t *oucp, const ucontext_t *ucp) { int ret;

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Brian Demsky
The following reply was made to PR misc/177624; it has been noted by GNATS. From: Brian Demsky To: Bruce Evans Cc: freebsd-bugs@freebsd.org, freebsd-gnats-sub...@freebsd.org Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Thu, 4 Apr 2013 09:43:06 -0700 On Apr 4, 2013

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Brian Demsky
On Apr 4, 2013, at 8:16 AM, Bruce Evans wrote: > On Fri, 5 Apr 2013, Bruce Evans wrote: > >> On Thu, 4 Apr 2013, Brian Demsky wrote: >> Description: >>> Here is the code for swap context: >>> int >>> swapcontext(ucontext_t *oucp, const ucontext_t *ucp) >>> { >>> int ret; >>> if ((o

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Bruce Evans
The following reply was made to PR misc/177624; it has been noted by GNATS. From: Bruce Evans To: Bruce Evans Cc: Brian Demsky , freebsd-bugs@freebsd.org, freebsd-gnats-sub...@freebsd.org Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Fri, 5 Apr 2013 02:16:02

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Bruce Evans
On Fri, 5 Apr 2013, Bruce Evans wrote: On Thu, 4 Apr 2013, Brian Demsky wrote: Description: Here is the code for swap context: int swapcontext(ucontext_t *oucp, const ucontext_t *ucp) { int ret; if ((oucp == NULL) || (ucp == NULL)) { errno = EINVAL; retur

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Bruce Evans
The following reply was made to PR misc/177624; it has been noted by GNATS. From: Bruce Evans To: Brian Demsky Cc: freebsd-gnats-sub...@freebsd.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Fri, 5 Apr 2013 00:46:32 +1100 (EST) This

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Bruce Evans
On Thu, 4 Apr 2013, Brian Demsky wrote: Description: Here is the code for swap context: int swapcontext(ucontext_t *oucp, const ucontext_t *ucp) { int ret; if ((oucp == NULL) || (ucp == NULL)) { errno = EINVAL; return (-1); } oucp->uc_flags &= ~UC

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-04 Thread Eitan Adler
The following reply was made to PR misc/177624; it has been noted by GNATS. From: Eitan Adler To: bug-followup Cc: Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Thu, 4 Apr 2013 08:11:34 -0400 -- Forwarded message -- From: Brian Demsky Date: 4

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-03 Thread Brian Demsky
/177624; it has been noted by GNATS. >> >> From: Brian Demsky >> To: bug-follo...@freebsd.org >> Cc: >> Subject: Re: misc/177624: Swapcontext can get compiled incorrectly >> Date: Wed, 03 Apr 2013 20:01:14 -0700 >> >> QSBxdWljayBub

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-03 Thread Eitan Adler
On 3 April 2013 23:10, Brian Demsky wrote: > The following reply was made to PR misc/177624; it has been noted by GNATS. > > From: Brian Demsky > To: bug-follo...@freebsd.org > Cc: > Subject: Re: misc/177624: Swapcontext can get compiled incorrectly > Date: Wed, 03 Ap

Re: misc/177624: Swapcontext can get compiled incorrectly

2013-04-03 Thread Brian Demsky
The following reply was made to PR misc/177624; it has been noted by GNATS. From: Brian Demsky To: bug-follo...@freebsd.org Cc: Subject: Re: misc/177624: Swapcontext can get compiled incorrectly Date: Wed, 03 Apr 2013 20:01:14 -0700

misc/177624: Swapcontext can get compiled incorrectly

2013-04-03 Thread Brian Demsky
>Number: 177624 >Category: misc >Synopsis: Swapcontext can get compiled incorrectly >Confidential: no >Severity: non-critical >Priority: low >Responsible:freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw