Hi Eran,
I encountered one problem that code auto-completion not work for "pthread_create" API function, I already included "<pthread.h>", please see the following screen snapshot:
we can see CodeLite prompted some other functions that declared in "pthread.h", but "pthread_create" is missing.
Could you please take a look?
Thanks.
auto-completion not work for "pthread_create" function
-
- CodeLite Curious
- Posts: 6
- Joined: Sat Jun 19, 2010 9:32 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
auto-completion not work for "pthread_create" function
You do not have the required permissions to view the files attached to this post.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: auto-completion not work for "pthread_create" function
Open:
Settings -> Tags Settings -> Advanced
Add the following line to the 'Tokens' tab:
Next, Workspace-> Retag Workspace (full)
It should work now
For more information about this voodoo magic:
http://codelite.org/LiteEditor/MacrosHandling101
Eran
Settings -> Tags Settings -> Advanced
Add the following line to the 'Tokens' tab:
Code: Select all
__nonnull
It should work now
For more information about this voodoo magic:
http://codelite.org/LiteEditor/MacrosHandling101
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 6
- Joined: Sat Jun 19, 2010 9:32 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: auto-completion not work for "pthread_create" function
your magic works! thanks again.