Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

memsizes.h 350B

12345678910111213141516171819
  1. #ifndef _MEMSIZES_H
  2. #define _MEMSIZES_H
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. #include <basemem.h>
  5. /**
  6. * Get size of base memory from BIOS free base memory counter
  7. *
  8. * @ret basemem Base memory size, in kB
  9. */
  10. static inline unsigned int basememsize ( void ) {
  11. return get_fbms();
  12. }
  13. extern unsigned int extmemsize ( void );
  14. #endif /* _MEMSIZES_H */