From tpatro@REDACTED Wed Jul 6 08:45:59 2005 From: tpatro@REDACTED (Tamas Patrovics) Date: Wed, 6 Jul 2005 08:45:59 +0200 Subject: httpd_util:integer_to_hexlist doc is incorrect Message-ID: The function appears in the documentation as integer_tohexlist (no underscore after to). The version I checked was the R10B-4 doc. /Tamas From bfulg@REDACTED Mon Jul 18 08:18:48 2005 From: bfulg@REDACTED (Brent Fulgham) Date: Sun, 17 Jul 2005 23:18:48 -0700 Subject: Internal consistency check error (Wings Compile) Message-ID: <95CC3FB7-1505-4221-B253-056FE81AD6FB@pacbell.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I received an Internal consistency check error when attempting to compile Wings 0.98.29b under OTP R10B-6 under Mac OS X (10.4.2 Tiger): Chaz:~/Desktop/wings-0.98.29b brent$ make (cd src; make) make TYPE=opt common erlc -pa /ebin +warn_unused_vars -I/include -I ../e3d -W +debug_info '-Dwings_version="0.98.29b"' -pa ../ebin -o../ebin wings_color.erl wings_color: function internal_rgb_to_hsv/3+97: Internal consistency check failed - please report this bug. Instruction: {test,is_eq_exact,{f,80},[{x,0},{atom,error}]} Error: {unsafe_instruction,{float_error_state,cleared}}: make[2]: *** [../ebin/wings_color.beam] Error 1 make[1]: *** [opt] Error 2 make: *** [all] Error 2 Chaz:~/Desktop/wings-0.98.29b brent$ uname -a Darwin Chaz.local 8.2.0 Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC Power Macintosh powerpc Chaz:~/Desktop/wings-0.98.29b brent$ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) iD8DBQFC20nJzGDdrzfvUpURAlN1AJ4hqUvAdD8QCcD5cmfehlt69lMSjwCeNuLd kMOGQK3/Xp3rImy/ramILuM= =qfUI -----END PGP SIGNATURE----- From serge@REDACTED Thu Jul 28 18:47:55 2005 From: serge@REDACTED (Serge Aleynikov) Date: Thu, 28 Jul 2005 12:47:55 -0400 Subject: SASL - duplicate alarms bug Message-ID: <42E90C3B.3060207@hq.idt.net> Is there a reason that the SASL's alarm handler doesn't check for duplicate alarms before adding new ones to the list? If you do the following on the system with low disk space / free memory: 1. Start SASL 2. Start OS_MON 3. Stop OS_MON 4. Start OS_MON you'll get duplicate alarms that are not easily clearled (you'd need to call alarm_handler:clear_alarm() multiple times for the same AlarmID... 17> alarm_handler:get_alarms(). [{system_memory_high_watermark,[]}, {{disk_almost_full,"/mnt/cdrom"},[]}, {{disk_almost_full,"/usr"},[]}, {system_memory_high_watermark,[]}, {{disk_almost_full,"/mnt/cdrom"},[]}, {{disk_almost_full,"/usr"},[]}] 18> alarm_handler:clear_alarm(system_memory_high_watermark). [{{disk_almost_full,"/mnt/cdrom"},[]}, {{disk_almost_full,"/usr"},[]}, {system_memory_high_watermark,[]}, {{disk_almost_full,"/mnt/cdrom"},[]}, {{disk_almost_full,"/usr"},[]}] This looks like a bug to me. Serge