From: Bart Van Assche Date: Sun, 24 Feb 2008 18:29:10 +0000 (+0000) Subject: Cleanup: moved const keyword in front of datatype. X-Git-Tag: svn/VALGRIND_3_4_0~1046 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=706322759c47775a4829f566bf9a7e55a7031b9b;p=thirdparty%2Fvalgrind.git Cleanup: moved const keyword in front of datatype. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7446 --- diff --git a/exp-drd/drd_segment.h b/exp-drd/drd_segment.h index 46bca857d2..e249bef97c 100644 --- a/exp-drd/drd_segment.h +++ b/exp-drd/drd_segment.h @@ -48,14 +48,14 @@ typedef struct segment } Segment; void sg_init(Segment* const sg, - ThreadId const creator, - ThreadId const created); + const ThreadId creator, + const ThreadId created); void sg_cleanup(Segment* const sg); -Segment* sg_new(ThreadId const creator, ThreadId const created); +Segment* sg_new(const ThreadId creator, const ThreadId created); void sg_delete(Segment* const sg); void sg_print(const Segment* const sg); Bool sg_get_trace(void); -void sg_set_trace(Bool const trace_segment); +void sg_set_trace(const Bool trace_segment); ULong sg_get_segments_created_count(void); ULong sg_get_max_segments_alive_count(void);