diff options
author | Konstantin Osipov <kostja@sun.com> | 2009-11-23 20:08:37 +0300 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2009-11-23 20:08:37 +0300 |
commit | e46eaca0f548c1e24e51e601c594f1a4169e077e (patch) | |
tree | bbd2bbf606ca13455791d5b1b0f3416072eb6c51 /mysys/my_wincond.c | |
parent | bae0e813106d5cd6505b07bd1b682c5eef2ee9d8 (diff) | |
download | mariadb-git-e46eaca0f548c1e24e51e601c594f1a4169e077e.tar.gz |
A follow up for the fix for Bug#35164 (remove priorities on Windows).
Diffstat (limited to 'mysys/my_wincond.c')
-rw-r--r-- | mysys/my_wincond.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mysys/my_wincond.c b/mysys/my_wincond.c index e7d8073a163..ad1636011db 100644 --- a/mysys/my_wincond.c +++ b/mysys/my_wincond.c @@ -181,7 +181,6 @@ int pthread_attr_init(pthread_attr_t *connect_att) { connect_att->dwStackSize = 0; connect_att->dwCreatingFlag = 0; - connect_att->priority = 0; return 0; } @@ -191,12 +190,6 @@ int pthread_attr_setstacksize(pthread_attr_t *connect_att,DWORD stack) return 0; } -int pthread_attr_setprio(pthread_attr_t *connect_att,int priority) -{ - connect_att->priority=priority; - return 0; -} - int pthread_attr_destroy(pthread_attr_t *connect_att) { bzero((uchar*) connect_att,sizeof(*connect_att)); |