Chameleon

Chameleon Commit Details

Date:2014-10-23 06:07:29 (9 years 6 months ago)
Author:Chuck Fry
Commit:2447
Parents: 2446
Message:CacheInit(), CacheRead() prototypes: use u_int32_t instead of long where appropriate
Changes:
M/branches/chucko/i386/libsaio/saio_internal.h

File differences

branches/chucko/i386/libsaio/saio_internal.h
7979
8080
8181
82
83
84
85
82
83
84
85
8686
8787
8888
......
9595
9696
9797
98
98
9999
100100
101101
extern void finalizeBootStruct(void);
/* cache.c */
extern void CacheReset();
extern void CacheInit(CICell ih, long blockSize);
extern long CacheRead(CICell ih, char *buffer, long long offset,
long length, long cache);
extern void CacheReset();
extern void CacheInit(CICell ih, u_int32_t blockSize);
extern u_int32_t CacheRead(CICell ih, char *buffer, long long offset,
u_int32_t length, long cache);
/* console.c */
extern bool gVerboseMode;
extern int printf(const char *format, ...);
extern int error(const char *format, ...);
extern int verbose(const char *format, ...);
extern void stop(const char *format, ...);
extern void stop(const char *format, ...) __attribute__ ((noreturn));
//Azi: replace getc/getchar with ? console.c
extern void pause();

Archive Download the corresponding diff file

Revision: 2447