From: CVS <do...@th...> - 2002-03-16 10:51:24
|
Update of /cvs/BasiliskII/src/Unix Modified Files: acconfig.h configure.in vm_alloc.cpp Log Message: - Check for caddr_t. On some systems like Solaris/SPARC, mmap() address type (first parameter) is caddr_t instead of void *. Explicitly cast address to (caddr_t) type and C++ implicit pointer conversion rules will do the rest. aka. caddr_t -> void * is OK unlike the opposite. |