"machine/atomic.h" for MIPS

Hi All,

I am looking for the "machine/atomic.h" file for MIPS, but I could not find it in header directory, which I got it from SVN. Please guide me on how to download this port or is it not yet ported for MIPS?

Thanks,
Nagendra.
 
It's not a port. It's a header file for libc, which is part of the base OS.

Code:
dice@molly:/usr/src/sys>find . -name 'atomic.h'
./amd64/include/atomic.h
./arm/include/atomic.h
./gnu/fs/xfs/FreeBSD/support/atomic.h
./i386/include/atomic.h
./ia64/include/atomic.h
./pc98/include/atomic.h
./powerpc/include/atomic.h
./sparc64/include/atomic.h
./sun4v/include/atomic.h
./cddl/compat/opensolaris/sys/atomic.h
./mips/include/atomic.h

Usually it ends up in /usr/include/:
Code:
dice@molly:/usr/include>find . -name 'atomic.h'
./machine/atomic.h
(Note, I have an i386 system)
 
Back
Top