Skip to content

Commit

Permalink
perfschema compilation, test and misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vuvova committed Mar 10, 2020
1 parent 81cffda commit 7af733a
Show file tree
Hide file tree
Showing 403 changed files with 20,043 additions and 63,069 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ storage/myisam/myisamlog
storage/myisam/myisampack
storage/myisam/rt_test
storage/myisam/sp_test
storage/perfschema/pfs_config.h
storage/rocksdb/ldb
storage/rocksdb/myrocks_hotbackup
storage/rocksdb/mysql_ldb
Expand Down
2 changes: 1 addition & 1 deletion include/my_pthread.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ int pthread_cancel(pthread_t thread);
#define pthread_key_create(A,B) ((*A=TlsAlloc())==0xFFFFFFFF)
#define pthread_key_delete(A) TlsFree(A)
#define my_pthread_setspecific_ptr(T,V) (!TlsSetValue((T),(V)))
#define pthread_setspecific(A,B) (!TlsSetValue((A),(B)))
#define pthread_setspecific(A,B) (!TlsSetValue((A),(LPVOID)(B)))
#define pthread_getspecific(A) (TlsGetValue(A))
#define my_pthread_getspecific(T,A) ((T) TlsGetValue(A))
#define my_pthread_getspecific_ptr(T,V) ((T) TlsGetValue(V))
Expand Down
Loading

0 comments on commit 7af733a

Please sign in to comment.