home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / BUGS < prev    next >
Encoding:
Text File  |  1996-12-10  |  2.7 KB  |  73 lines

  1. BUG000001
  2. digulla@wi-pc44.fh-konstanz.de
  3. assign DEVS: devs -> ok
  4. list devs: -> ok
  5. list devs:nil.handler -> "List: Object is of wrong type"
  6.  
  7. BUG000002 fixed
  8. digulla@wi-pc44.fh-konstanz.de
  9. Workbench:> echo > test "Test"
  10. Couldn't run command: Object not found
  11. Workbench:> echo Test
  12. Test
  13. Workbench:>
  14. The problem was the space between ">" and "test". ReadItem() would now
  15. return "" for the filename and "test" as another parameter. Now I simply
  16. skip the ">" or "<" before I allow ReadItem() to process the filename.
  17.  
  18. BUG000003 fixed
  19. klaus21@t-online.de
  20. exec.library/RemTail() crashes on an empty list. It should return NULL.
  21. I wouldn't be too surprised if RemHead() crashes, too. ('Crash' means:
  22. Segmentation fault.)
  23. The problem was that GetTail() didn't return NULL for an empty list.
  24.  
  25. BUG000004
  26. klaus21@t-online.de
  27. The DosList structure found in AROS:include/dos/dosextens.h isn't
  28. compatible to the original (Amiga) one. The biggest problem: dol_Name is a
  29. STRPTR, but it should be a BSTR. (I wrote a program to show the currently
  30. mounted devices, and it took me some time to find out why I got those silly
  31. segfaults. BTW, the first DosList-entry has the name "(Null)", is this the
  32. list-head or does it have any special meaning (i.e., is it a real device?)
  33.  
  34. BUG000005 fixed
  35. digulla@wi-pc44.fh-konstanz.de
  36. newshell crashes because
  37. Program received signal SIGSEGV, Segmentation fault.
  38. 0x8056535 in _Exec_DoIO (iORequest=0x80c1fe0, SysBase=0x806a290) at doio.c:67
  39. 67        __AROS_LVO_CALL1(void,5,iORequest->io_Device,iORequest,A1);
  40. io_Device is NULL
  41. #0  0x8056535 in _Exec_DoIO (iORequest=0x80c1fe0, SysBase=0x806a290)
  42.     at doio.c:67
  43. is called with ThisTask()->pr_CurrentDir.
  44. #1  0x80615a5 in DoName (iofs=0x80c1fe0, name=0x8063b74 "", DOSBase=0x806baa0)
  45.     at doname.c:90
  46. #2  0x805818d in _Dos_Lock (name=0x8063b74 "", accessMode=-2,
  47.     DOSBase=0x806baa0) at lock.c:103
  48. #3  0x8057159 in _Dos_DupLock (lock=33697770, DOSBase=0x806baa0)
  49.     at duplock.c:112
  50.  
  51. BUG000006
  52. klaus21@t-online.de
  53. "mount devs:ram.handler RAM:" does nothing. Afterwards, no RAM: or RAM::
  54. is available and no error is printed.
  55.  
  56. BUG000006
  57. klaus21@t-online.de
  58. "dir :" does nothing.
  59.  
  60. BUG000007
  61. digulla@wi-pc44.fh-konstanz.de
  62. forkbomb cannot be called from the shell (one has to cut&paste one of
  63. the lines of the script) and it runs only about 1000 times before it
  64. GURUs with AN_MemCorrupt (81000005). Does not happen every time, though :-/
  65.  
  66. BUG000008
  67. digulla@wi-pc44.fh-konstanz.de
  68. AROS crashes after some time with a GURU Meditation 8100 000e
  69. Deadend/Exec/Stack appears to extend out of range
  70. Task: 0x80765e8 (Idle task)
  71. Either the problem is that the stack grows or the Task structure for the
  72. idle task gets corrupted. Might be connected to BUG000007.
  73.