Re: pselect

2013-08-15 Thread Christoph Egger
Christoph Egger  writes:
> Moin!
>
>   Does anyone know if we have some problems with pselect on kfreebsd?
> Emacs changed from [0] to [1] and since then console emacs just hangs in
> a loop with [2]

 Hm seems to be the select in xgselect.c:48 in the end. still looking

  Christoph


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87eh9vl68r@mitoraj.siccegge.de



pselect

2013-08-15 Thread Christoph Egger
Moin!

  Does anyone know if we have some problems with pselect on kfreebsd?
Emacs changed from [0] to [1] and since then console emacs just hangs in
a loop with [2]

  Christoph

[0] emacs24-24.2+1
while (! detect_input_pending ())
  {
struct timeval current;
struct timeval timeout;

EMACS_GET_TIME (current);

/* Break if result would be negative.  */
if (timeval_subtract (¤t, wakeup, current))
  break;

/* How long `select' should wait.  */
timeout.tv_sec = 0;
timeout.tv_usec = 1;

/* Try to wait that long--but we might wake up sooner.  */
select (0, NULL, NULL, NULL, &timeout);
  }

[1] emacs24-24.3+1
while (! detect_input_pending ())
  {
EMACS_TIME current = current_emacs_time ();
EMACS_TIME timeout;

/* Break if result would not be positive.  */
if (EMACS_TIME_LE (wakeup, current))
  break;

/* How long `select' should wait.  */
timeout = make_emacs_time (0, 10 * 1000 * 1000);

/* Try to wait that long--but we might wake up sooner.  */
pselect (0, NULL, NULL, NULL, &timeout, NULL);
  }

[2]
  3359 100358 emacs24-lucid CALL  clock_gettime(0,0x7fffc330)
  3359 100358 emacs24-lucid RET   clock_gettime 0
  3359 100358 emacs24-lucid CALL  clock_gettime(0,0x7fffc380)
  3359 100358 emacs24-lucid RET   clock_gettime 0
  3359 100358 emacs24-lucid CALL
  pselect(0x5,0x7fffc620,0x7fffc6a0,0,0x7fffc550,0)
  3359 100358 emacs24-lucid RET   pselect 1
  3359 100358 emacs24-lucid CALL  clock_gettime(0,0x7fffc330)
  3359 100358 emacs24-lucid RET   clock_gettime 0
  3359 100358 emacs24-lucid CALL  clock_gettime(0,0x7fffc380)
  3359 100358 emacs24-lucid RET   clock_gettime 0
  3359 100358 emacs24-lucid CALL
  pselect(0x5,0x7fffc620,0x7fffc6a0,0,0x7fffc550,0)
  3359 100358 emacs24-lucid RET   pselect 1


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87ioz7l6l1@mitoraj.siccegge.de



Re: New version of libedit in experimental: tests welcome

2013-08-15 Thread Sylvestre Ledru
Hello,

The release in experimental of libedit received some good feedbacks
(btw, thanks to Guillem Jover).
I am planning to upload it soon in the archive. So, if you haven't
tested libedit yet, please go ahead!
Thanks!

Cheers,
Sylvestre

On 02/08/2013 19:34, Sylvestre Ledru wrote:
> Hello,
>
> You are receiving this email because you maintain one (or more) package
> using libedit.
>
> I just uploaded in experimental a new upstream version of libedit
> published here:
> http://www.thrysoee.dk/editline/
>
> It would be nice if you could test if your packages still behave the
> same. I am not really worried but since it is an important package, I
> would like confirmations.
>
>
> Thanks,
> Sylvestre
>
>
> Here is the list:
> $ build-rdeps --print-maintainer libedit-dev
> Reverse Build-depends in contrib:
> -
>
> No reverse build-depends found for libedit-dev.
>
> Reverse Build-depends in main:
> --
>
> boxbackup (Reinhard Tartler )
> heimdal (Brian May )
> varnish (Varnish Package Maintainers
> )
> repmgr (Marco Nenciarini )
> ocropus (Jeffrey Ratcliffe )
> mapserver (Debian GIS Project )
> gnuplot (Debian Science Team
> )
> llvm-toolchain-snapshot (LLVM Packaging Team
> )
> php5 (Debian PHP Maintainers )
> ufsutils (GNU/kFreeBSD Maintainers )
> ntp (Debian NTP Team )
> ceph (Laszlo Boszormenyi (GCS) )
> haskell-editline (Debian Haskell Group
> )
> llvm-toolchain-3.3 (LLVM Packaging Team
> )
> postgresql-9.1 (Debian PostgreSQL Maintainers
> )
> chrony (Debian QA Group )
> firebird2.5 (Debian Firebird Group
> )
> freebsd-utils (GNU/kFreeBSD Maintainers )
> openssh (Debian OpenSSH Maintainers )
> uim (HIGUCHI Daisuke (VDR dai) )
> llvm-toolchain-3.2 (LLVM Packaging Team
> )
> libreadline-java (Debian Java Maintainers
> )
> prerex (Ryan Kavanagh )
> postgres-xc (Vladimir Stavrinov )
>
> Found a total of 24 reverse build-depend(s) for libedit-dev.
>
> Reverse Build-depends in non-free:
> --
>
> ngspice (Debian Science Team
> )
>
> Found a total of 1 reverse build-depend(s) for libedit-dev.
>
>


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/520c8aaa.2080...@debian.org