cagri otomotiv

2005-08-10 Thread Cagri Motorlu Araclar
Web sayfamizi ziyaret ediniz Tel : 0212 521 11 11 - 521 04 04 - 521 36 96 - 531 76 18 - 532 91 11 Sinirsiz Müsteri Memnuniyetini Esas Alarak 30 Yildir ilkeli ve Kaliteli Hizmet Vermektedir. Vade Takas yapilir. 2 El Otomotivde Tek isim Kaliteye Çagri ...Hizmete Çagri...Güvene Çagri... Web : http://

[PATCH] libpager's stub functions doesn't update seqno

2005-08-10 Thread Sergio Lopez
Hi, Hurd's libpager library makes use of the port's sequence number (seqno) to serialize requests. The stub functions (stubs.c notify-stubs.c) doesn't properly update this number, so when they are called (pretty unusual, but it happens on some special situations, i.e. when GNU Mach tries to access

Экспресс переезд

2005-08-10 Thread charity
  ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Shed inches in minutes

2005-08-10 Thread Body Wrap
Body Wrap at Home to lose 6-20 inches in one hour. With Bodywrap we guarantee: you'll lose 6-8 Inches in one hour 100% Satisfaction or your money back Bodywrap is soothing formula that contours, cleanses and rejuvenates your body while reducing inches. http://3.commercewrap.com/

Experimental patch to avoid thread explosion

2005-08-10 Thread Sergio Lopez
Hello, One of the most usual errors found by Hurd's developers is the "zalloc's panic" one. I think that this panic could be (usually) related with the extremly high number of threads that some translators (i.e. ext2fs) spawn when there's a significant amount number of activity over it (already di

Re: Bin schon aufgeregt

2005-08-10 Thread regenbogen
Hi, wir haben letztens kurz gechattet, erinnerst du dich noch? Mein Name ist Jasmin, ich komme aus dem Raum Osnabrück. Ich bin 1.70 cm gross und wiege 53kg. Habe dir ein Foto beigefügt. Ich finde mich selbst nicht hässlich, ob ich dir gefalle weiss ich nicht. Gefalle ICH Dir? Ich suche um ehrlich

Audio with Hurd

2005-08-10 Thread svante
Can someone inform me the major reason why the Hurd does not yet have audio support. I think the lack of audio support is a very large drawback. How large effort is needed to enable audio, via e.g alsa? ___ Bug-hurd mailing list Bug-hurd@gnu.org http:

Re: Audio with Hurd

2005-08-10 Thread Alfred M\. Szmidt
Can someone inform me the major reason why the Hurd does not yet have audio support. Because you haven't implemented it. :-) I think the lack of audio support is a very large drawback. How large effort is needed to enable audio, via e.g alsa? It would be a huge job to do it. First

You've received a greeting card from a friend!

2005-08-10 Thread postcard
Title: postcards.org   You have just received a virtual greeting from a friend! . You can pick up your postcard at the following web address: . http://www.postcards4u.com/?a0190313376667 . If you can't click on the web address above, you can also visit E-Greet

getpeername(fd,NULL,NULL) crashes

2005-08-10 Thread Samuel Thibault
Hi, The implementation of getpeername(fd, addr, len) (in libc/sysdeps/mach/hurd/getpeername.c) performs addr->sa_family = type; without checking that *len is big enough, so that getpeername(fd, NULL, NULL); crashes (while it is a common way to determine whether an fd is a socket). Here is some pa

Re: getpeername(fd,NULL,NULL) crashes

2005-08-10 Thread Samuel Thibault
Samuel Thibault, le Thu 11 Aug 2005 01:42:41 +0200, a écrit : > so that getpeername(fd, NULL, NULL); crashes (while it is a common way > to determine whether an fd is a socket). Err: please read socklen_t len; getpeername(fd, NULL, &len); of course. Regards, Samuel _