1 @c Copyright (c) 1998 - 2000 Kungliga Tekniska Högskolan
2 @c (Royal Institute of Technology, Stockholm, Sweden).
3 @c All rights reserved.
7 @node Oddities, Arla timeline, Programming, Top
10 @c ----------------------------------------------------
16 @item Directories - UnixModeBits are ignored when the vnode is a directory.
18 @item Errnos are sent over the network. Like Solaris ENOTEMPTY(93) doesn't
19 even map to an error on sunos4 where ENOTEMPTY is 66.
21 @item Mountpoints have the mode-bits 0644, if they don't they are symlinks
22 (and have the mode-bits 0755).
26 @c ----------------------------------------------------
28 @section Operating systems
32 @item On Irix 6.5 you have to build the dirents depending on what ABI
33 of the binary you are currently running.
35 @item . and .. need to be first in directories, this is needed since some
36 programs (like make) "knows" that the two first entries are . and .. and
39 @item Reclen (in struct dirent) shouldn't be too large. When its
40 larger then the buffer used in opendir/readdir/closedir, you lose.
44 @c ----------------------------------------------------