소스 검색

README.dev: clarify type naming conventions

Nathalie Furmento 13 년 전
부모
커밋
250b34a491
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      README.dev

+ 5 - 1
README.dev

@@ -38,8 +38,12 @@ Coding Conventions
 
 - Prefix names of internal objects (types, functions, etc.) with "_starpu"
 
-- Type names do not end with _t, _s or similar. Use _t only for opaque public types, such as
+- Names for qualified types (struct, union, enum) do not end with _t, _s or similar.
+  Use _t only for typedef types, such as opaque public types, e.g
        typedef struct _starpu_data_state* starpu_data_handle_t;
+  or
+       typedef uint64_t starpu_tag_t;
+