📄 multithread.c
字号:
/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */#include "ap_config.h"#include "httpd.h"#include "http_conf_globals.h"#include "multithread.h"#include <nwsemaph.h>thread *create_thread(void (thread_fn)(void *), void *thread_arg){ int rv; rv = BeginThreadGroup(thread_fn, NULL, ap_thread_stack_size, thread_arg); return((thread *)rv);}int kill_thread(thread *thread_id){ return(0);}int await_thread(thread *thread_id, int sec_to_wait){ return(0);}void exit_thread(int status){}void free_thread(thread *thread_id){}mutex * ap_create_mutex(char *name){ return (mutex*)kMutexAlloc(name);}mutex * ap_open_mutex(char *name){ return(NULL);}int ap_acquire_mutex(mutex *mutex_id){ return(kMutexLock(mutex_id));}int ap_release_mutex(mutex *mutex_id){ if (kMutexUnlock(mutex_id)) return 0; else return 1;}void ap_destroy_mutex(mutex *mutex_id){ kMutexFree(mutex_id);}semaphore *create_semaphore(int initial){ return((semaphore*)OpenLocalSemaphore(initial));}int acquire_semaphore(semaphore *semaphore_id){ return(WaitOnLocalSemaphore((long)semaphore_id));}int release_semaphore(semaphore *semaphore_id){ return(SignalLocalSemaphore((long)semaphore_id));}void destroy_semaphore(semaphore *semaphore_id){ CloseLocalSemaphore((long)semaphore_id);}event *create_event(int manual, int initial, char *name){ return(NULL);}event *open_event(char *name){ return(NULL);}int acquire_event(event *event_id){ return(0);}int set_event(event *event_id){ return(0);}int reset_event(event *event_id){ return(0);}void destroy_event(event *event_id){}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -