開發平台(Platform): (Ex: Win10, Linux, ...)
RP1 + Raspbian
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
gcc 4.9.2
編譯參數:-Wall -pedantic -O3 -std=gnu11 -lpthread
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
pthread
問題(Question):
正在練習寫multithread的code
使用gcc編譯會有Warning(用clang不會)
跑起來也沒問題
可是valgrind顯示有memary leakage (我沒用malloc)
不知道如何改善
預期的正確結果(Expected Output):
無memory leak
錯誤結果(Wrong Output):
gcc的Warning如下:
atomic.c:30:9: warning: right-hand operand of comma expression has no effect
[-Wunused-value]
++acnt;
^
atomic.c:32:9: warning: right-hand operand of comma expression has no effect
[-Wunused-value]