Showing
2 changed files
with
9 additions
and
1 deletions
@@ -16,5 +16,12 @@ coverage-html: | @@ -16,5 +16,12 @@ coverage-html: | ||
16 | -$(MAKE) -C tests $(AM_MAKEFLAGS) -k $@ | 16 | -$(MAKE) -C tests $(AM_MAKEFLAGS) -k $@ |
17 | endif | 17 | endif |
18 | 18 | ||
19 | +REGEX_CCLASS=/^[ \t]*\(TR_CLASS\|TR_INTERFACE\)\(([a-zA-Z0-9_]+)/\2/d,definition/ | ||
19 | tags: | 20 | tags: |
20 | - ctags -R -V --langdef=cclass --langmap=cclass:.h --regex-cclass='/^[ \t]*\(TR_CLASS\|TR_INTERFACE\)\(([a-zA-Z0-9_]+)/\2/d,definition/' | 21 | + @ctags -R -V --langdef=cclass --langmap=cclass:.h \ |
22 | + --regex-cclass='$(REGEX_CCLASS)' | ||
23 | + | ||
24 | +loc: | ||
25 | + @find src/ include/ -not -path testers -and -name "*.[ch]" \ | ||
26 | + -exec sed '/\/\*/,/\*\//d;/\/\//d' {} \; | wc -l | ||
27 | + |
@@ -43,6 +43,7 @@ TR_timerGet(TR_Timer this, unsigned long * missed) | @@ -43,6 +43,7 @@ TR_timerGet(TR_Timer this, unsigned long * missed) | ||
43 | case TR_TBASE_MIC: | 43 | case TR_TBASE_MIC: |
44 | sec_factor = 1000 * 1000; | 44 | sec_factor = 1000 * 1000; |
45 | break; | 45 | break; |
46 | + default: | ||
46 | case TR_TBASE_MIL: | 47 | case TR_TBASE_MIL: |
47 | sec_factor = 1000; | 48 | sec_factor = 1000; |
48 | break; | 49 | break; |
Please
register
or
login
to post a comment