- 论坛徽章:
- 36
|
明白了一点,不知道对不对
试了下:- #include <windows.h>
- #include <strsafe.h>
- #define MAX_THREADS 3
- #define BUF_SIZE 255
- int n = 0;
- DWORD WINAPI ThreadProc( LPVOID lpParam )
- {
- while(1){
- n = 1;
- if(n != 1){
- printf("###");
- }
- }
- return 0;
- }
- int main()
- {
- HANDLE tid = CreateThread(NULL, 0, ThreadProc, NULL, 0, NULL); // returns the
- while(1){
- n = 10;
- if(n != 10){
- printf("---");
- }
- }
- getchar();
- }
复制代码 打印是啥都有啊,所以,非原子操作,各种被抢,尤其在这里:- if(flag==SM_FREE)
- {
- //假如有两个因为抢断而都进入到这里,并且都赋一个type值比如SM_LOCK,那就两个同时锁住了
- flag=type;
- if(flag!=type)
复制代码 还要看各种type值,各种打断各种非预期。。锁还是要原子操作好 |
|