diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-04-21 23:00:26 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-04-21 23:00:26 -0400 |
commit | a7cd3703ea1ff4686d49888f014c746b56411fdf (patch) | |
tree | 7b4bc71c96ec1b30135343344ca0d0a7ba0a4437 /libdimension/platform.h | |
parent | f055b64c58b9ce96a59da99e8f388d63aa4b0244 (diff) | |
download | dimension-a7cd3703ea1ff4686d49888f014c746b56411fdf.tar.xz |
New DMNSN_INTERNAL tag.
Diffstat (limited to 'libdimension/platform.h')
-rw-r--r-- | libdimension/platform.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libdimension/platform.h b/libdimension/platform.h index 797135d..95f8fed 100644 --- a/libdimension/platform.h +++ b/libdimension/platform.h @@ -34,32 +34,32 @@ * Print a stack trace, if implemented for the current platform. * @param[in,out] file The file to which to write the stack trace. */ -void dmnsn_backtrace(FILE *file); +DMNSN_INTERNAL void dmnsn_backtrace(FILE *file); /** * Is the calling thread the main thread? * @return Whether this is the main execution thread, or \c true if we can't * tell. */ -bool dmnsn_is_main_thread(void); +DMNSN_INTERNAL bool dmnsn_is_main_thread(void); /** * Are we running on a little-endian computer? * @return Whether the current architecture is little-endian. */ -bool dmnsn_is_little_endian(void); +DMNSN_INTERNAL bool dmnsn_is_little_endian(void); /** * How many CPUs are available? * @return The number of CPUs available to dimension. */ -size_t dmnsn_ncpus(void); +DMNSN_INTERNAL size_t dmnsn_ncpus(void); /** * Calculate process times. * @param[out] timer The timer in which to store the current total process * times. */ -void dmnsn_get_times(dmnsn_timer *timer); +DMNSN_INTERNAL void dmnsn_get_times(dmnsn_timer *timer); #endif /* DIMENSION_IMPL_PLATFORM_H */ |