Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!usc!ucsd!ucrmath!proton!meson!nusbaum From: nusbaum@meson.uucp (R. James Nusbaum) Newsgroups: comp.realtime Subject: Re: RPC Problem Message-ID: <365@proton.UUCP> Date: 26 Jun 89 16:40:12 GMT References: <3510@ncar.ucar.edu> Sender: news@proton.UUCP Reply-To: nusbaum@meson.UUCP (R. James Nusbaum) Organization: Loma Linda U. Rad. Research Lab, Loma Linda Lines: 31 In article <3510@ncar.ucar.edu> thor@thor.ucar.edu (Rich Neitzel) writes: > >Well, I think I've discoverd a problem with the rpc package in >VxWork's. I have an application that needs to pass both doubles and >unsigned chars. However, when I go to download I'm told that the xdr >routines _xdr_double and _xdr_u_char don't exisat and sure enough, >lkup finds many xdr routines but not these! Needless to say I am A well known problem. I use the ones from my host's (a Sun) library. I include them in the kernel by making the following changes to the kernel Makefile: change EXTRA_MODULES = -u _ls -u _setjmp to EXTRA_MODULES = -u _ls -u _setjmp -u _xdr_float -u _xdr_double -u _xdr_char\ -u _xdr_u_char -u Fadds -u Mund xdr_float is also undefined. Fadds and Mund are missing floating point routines. Jim Nusbaum Radiation Research Laboratory Loma Linda University Medical Center nusbaum%proton.uucp@ucrmath.ucr.edu