- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个线程安全的函数,我想分配一个动态的线程本地内存缓冲区以独立使用它,并且一旦线程退出,便能够取消分配它。这是演示:
void func_needs_storage(void) {
static __thread void* tlb = NULL;
if (!tlb)
tlb = malloc(sizeof(int));
printf("Thread id: %08lx, local tlb address is: %08lx\n",
(uintptr_t)pthread_self(), (uintptr_t)tlb);
}
void* thread_func(void *) {
for (int i = 0; i < 3; ++i)
func_needs_storage();
return NULL;
}
int main() {
pthread_t threads[3];
for (int i = 0; i < sizeof(threads) / sizeof(*threads); ++i)
if (pthread_create(&threads[i], NULL, thread_func, NULL))
return 1;
for (int i = 0; i < sizeof(threads) / sizeof(*threads); ++i)
if (pthread_join(threads[i], NULL))
return 2;
return 0;
}
Note that I can't allocate/free memory in the
thread_func
The output is:
Thread id: 7efda7cdd700, local tlb address is: 7efda0000b20 <-- 1st thread
Thread id: 7efda7cdd700, local tlb address is: 7efda0000b20
Thread id: 7efda84de700, local tlb address is: 7efda0000f50 <-- 2nd thread
Thread id: 7efda84de700, local tlb address is: 7efda0000f50
Thread id: 7efda8cdf700, local tlb address is: 7efda0000f70 <-- 3rd thread
Thread id: 7efda8cdf700, local tlb address is: 7efda0000f70
func_needs_storage()
是一个需要临时缓冲区来处理某些数据的函数,它可能被多次调用。它使用
的内存应该是动态的,并且可能是很大的(最大为兆字节),并且很难放在堆栈上。我不想每次调用该函数时都分配缓冲区,所以我将指向它的指针存储在线程局部静态变量中,该变量对于每个线程都是唯一的。
pthread
API或以某种方式声明我的变量,而不是
__thread
?编译器是最新的gcc/clang,操作系统是archlinux/freebsd。
ThreadLocalStorage
类中,并使析构函数释放其内部内存。然后,如果声明
static thread_local ThreadLocalStorage
,则该线程退出后将调用其析构函数。
最佳答案
我回来了。我已经使用pthread_key_create(),pthread_setspecific()和pthread_getspecific()函数来解决我的任务,我想与您分享我的解决方案,希望对您有所帮助。
static pthread_key_t key;
static pthread_once_t key_once = PTHREAD_ONCE_INIT;
void key_destructor(void* tlb) {
printf("Thread id: %08lx, deallocate local tlb address: %08lx\n",
(uintptr_t)pthread_self(), (uintptr_t)tlb);
free(tlb);
}
void make_key_once(void) {
pthread_key_create(&key, key_destructor /* or just "free" */);
}
void func_needs_storage(void) {
pthread_once(&key_once, make_key_once);
void* tlb = NULL;
if ((tlb = pthread_getspecific(key)) == NULL)
{
tlb = malloc(sizeof(int));
pthread_setspecific(key, tlb);
}
printf("Thread id: %08lx, local tlb address is: %08lx\n",
(uintptr_t)pthread_self(), (uintptr_t)tlb);
}
void* thread_func(void *) {
for (int i = 0; i < 3; ++i)
func_needs_storage();
return NULL;
}
int main() {
pthread_t threads[3];
for (int i = 0; i < sizeof(threads) / sizeof(*threads); ++i)
if (pthread_create(&threads[i], NULL, thread_func, NULL))
return 1;
for (int i = 0; i < sizeof(threads) / sizeof(*threads); ++i)
if (pthread_join(threads[i], NULL))
return 2;
return 0;
}
输出为:
Thread id: 881b309c0, local tlb address is: 200bb81e0
Thread id: 881b309c0, local tlb address is: 200bb81e0
Thread id: 881b309c0, local tlb address is: 200bb81e0
Thread id: 881b309c0, deallocate local tlb address: 200bb81e0
Thread id: 881b30e40, local tlb address is: 200bb81e0
Thread id: 881b30e40, local tlb address is: 200bb81e0
Thread id: 881b30e40, local tlb address is: 200bb81e0
Thread id: 881b30e40, deallocate local tlb address: 200bb81e0
Thread id: 881b312c0, local tlb address is: 200bb81e0
Thread id: 881b312c0, local tlb address is: 200bb81e0
Thread id: 881b312c0, local tlb address is: 200bb81e0
Thread id: 881b312c0, deallocate local tlb address: 200bb81e0
内存被重用。让我们向func_needs_storage()添加一些延迟以证明它可以工作:
Thread id: 8815e49c0[0], local tlb address is: 20062c1e0{0}
Thread id: 8815e52c0[1], local tlb address is: 20062c300{1}
Thread id: 8815e4e40[2], local tlb address is: 20062c2e0{2}
Thread id: 8815e4e40[2], local tlb address is: 20062c2e0{2}
Thread id: 8815e49c0[0], local tlb address is: 20062c1e0{0}
Thread id: 8815e52c0[1], local tlb address is: 20062c300{1}
Thread id: 8815e49c0[0], local tlb address is: 20062c1e0{0}
Thread id: 8815e49c0[0], deallocate local tlb address: 20062c1e0{0}
Thread id: 8815e4e40[2], local tlb address is: 20062c2e0{2}
Thread id: 8815e4e40[2], deallocate local tlb address: 20062c2e0{2}
Thread id: 8815e52c0[1], local tlb address is: 20062c300{1}
Thread id: 8815e52c0[1], deallocate local tlb address: 20062c300{1}
如果您不受限于C(就像我以前那样)并允许在代码中使用C++,请使用
thread_local
storage class specifier,因为在线程终止时将为每个
thread_local
对象调用该对象的析构函数,从而有可能释放内存。 FD。
关于c - 线程退出后是否可以取消分配C __thread线程本地内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59413673/
我目前正在为 Cocoa/Objective-C 项目编写一个脚本来完全自动化我的编译-运行-调试过程。 我的最后一行代码是: lldb -f Build/MyApp.app -o "run" 这实际
我有一个带有登录屏幕的脚本,如果按下取消按钮,我想完全退出该应用程序。我尝试了 3 种方法: 系统退出() QApplication.quit() QCoreApplication.instance(
我有一个 Flash 应用程序,可以重定向到另一个页面。我很乐意捕获任何其他窗口卸载事件(单击链接/提交表单)并警告用户他们将丢失 Flash 应用程序中的进度。 但是,我找不到任何方法来判断 URL
我正在尝试在 Ubuntu 上用 Python 编写一个简单的程序,它将在播放视频完成后关闭/退出/退出 VLC Player。 能否请您指导我应该在我的程序中添加什么以获得我需要的结果。 impor
我在 Lynda.com 上学习 PHP 2 视频时遇到了一个问题,因为讲师似乎忽略了告诉我们他在视频中执行的步骤之一。我在这里上传了相关视频http://www.youtube.com/watch?
某天在群内有同学问到,在python下我用input或者raw_input都得输入完后回车才能获取到输入的值,那如何实现任意键退出暂停等功能呢,我当时也没有多想,因为接触python时间也不算长,主
我按顺序调用了几个函数(我无法编辑),但有些函数会重定向用户,所以我永远不会进入下一个函数。 我正在调用一个第三方函数,它调用了我能够阻止的 wp_redirect(),但是下一行是 exit;我不知
终止/退出主函数的 D 方式是什么? import std.stdio; import core.thread; void main() { int i; while (i <= 5)
我正在申请写作。用户可以打开应用程序、写一些文本、保存他们的工作等。 我试图做到这一点,以便点击 window close按钮将提示用户 (a) 保存他们的工作(如有必要)或 (b) 退出。 我正在尝
我正在通过在 repl 中检查别人的代码来玩弄它。 它不断调用 System/exit,这导致我的 repl 崩溃。这真是令人气愤。 在我有权访问的所有代码中,我都模拟了调用。 但它也会调用一些我没有
我正在使用 subprocess执行mimic的模块程序(指定 here )。下面的代码成功地读取了一些文本并写入了一个 mp3 文件。 import subprocess proc = subpro
退出 .then 范围后数组上的值被清除 在下面的代码中tableValues1.length 给我正确的长度,直到它位于每个循环内当它退出时,作用域数组长度为零。 请谁能帮我解决这个问题 - 谢谢
我正在尝试为 s3cmd 编写一个 docker 镜像。当我通过 docker-compose 运行从 Dockerfile 构建的图像时,容器在 docker compose run 命令之前退出。
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicate: Quitting an application - is that frowned upon? 我编写了一个 And
我遇到 Selenium WebDriver 仅执行一次后退出 for 循环的问题。据推测,这是获取内容和在加载页面之前启动循环的问题。是否有可能让 webdriver 等待页面加载? List al
#include #include #include #include "Player.h" using namespace std; void PlayerMenu(); int main()
class Test{ public static void main(String args[]) { Patron list[] = new PatronData(
我正在做一些作业,遇到了这个问题。 Write a program that reads several lines of text and prints a table indicating the
我正在用 C 创建一个简单的 Linux 命令 shell。我无法理解我的代码在哪里出现问题。 “commands”是我希望作为一个父进程的子进程同时执行的 Linux 命令字符串列表。当所有执行完成
我的控制台应用程序有点问题。应用程序应该从用户那里获取数字并将它们添加到列表中,但是如果输入是“c”,它应该关闭。我不知道如何在不使用 Scanner.nextLine() 挂起应用程序并退出循环的情
我是一名优秀的程序员,十分优秀!