Placeholder for TLS insertion

This commit is contained in:
Michael Brown
2007-01-31 03:47:42 +00:00
parent 1f5f900595
commit a3695b1ff6
2 changed files with 31 additions and 8 deletions

12
src/include/gpxe/tls.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef _GPXE_TLS_H
#define _GPXE_TLS_H
#include <errno.h>
struct stream_application;
static inline int add_tls ( struct stream_application *app __unused ) {
return -ENOTSUP;
}
#endif /* _GPXE_TLS_H */