- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我有这个主要功能,bank1.c:
#include<stdio.h>
#include<string.h>
#include<pthread.h>
#include<stdlib.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/ipc.h>
#include<sys/msg.h>
#include<signal.h>
#include<sys/stat.h>
#include"receive_message.h"
int desks = 10;
int N = 2;
int running = 0;
pthread_t tid[10];
int queue[10];
int balance = 20;
pthread_mutex_t lock;
void* getMessage(void *arg)
{
int i;
char* message = malloc(sizeof(char)*30);
char** m_point = &message;
key_t key;
pthread_mutex_lock(&lock);
pthread_t id = pthread_self();
pid_t pid;
int j = 10;
for(i = 0; i < N; i++)
{
if(pthread_equal(id, tid[i]))
{
key = 10 + i * 5;
printf("\n Thread %d processing\n", i);
m_point = receive_message(key, m_point);
printf(" Message received: %s\n", *m_point);
}
}
free(message);
pthread_mutex_unlock(&lock);
running = running - 1;
return NULL;
}
int main(void)
{
int i = 0;
int err;
if (pthread_mutex_init(&lock, NULL) != 0)
{
printf("\n mutex init failed\n");
return 1;
}
while(i < N)
{
running = running + 1;
pthread_create(&(tid[i]), NULL, &getMessage, NULL);
i++;
}
while(running != 0)
{
//sleep(2);
}
printf(" RUN OK\n");
return 0;
}
我意识到我需要在其他文件中使用函数“receive_message”,所以我尝试从中创建一个单独的文件 receive_message.c:
#include<stdio.h>
#include<string.h>
#include<pthread.h>
#include<stdlib.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/ipc.h>
#include<sys/msg.h>
#include<signal.h>
#include<sys/stat.h>
#define MSGSZ 128
struct msgbuf {
long mtype;
char mtext[200];
};
char** receive_message(key_t key, char** ret)
{
int msqid;
msqid = msgget((key_t) key, 0600 | IPC_CREAT);
struct msqid_ds buf;
struct msgbuf m_buf;
int rc = msgctl(msqid, IPC_STAT, &buf);
int msg = (uint)(buf.msg_qnum);
if (msg != 0){
if ((msqid = msgget(key, 0644)) == -1) { /* connect to the queue */
perror("msgget");
return ret;
}
if (msgrcv(msqid, &m_buf, sizeof m_buf.mtext, 0, 0) == -1) {
perror("msgrcv");
return ret;
}
}
strcpy(*ret, m_buf.mtext);
return ret;
}
有了这个头文件,receive_message.h:
#ifndef RECEIVE_MESSAGE_H_INCLUDED
#define RECEIVE_MESSAGE_H_INCLUDED
struct msgbuf {
long mtype; /* message type, must be > 0 */
char mtext[200]; /* message data */
};
char** receive_message(key_t key, char** ret)
#endif
现在,当我尝试将其编译为 gcc bank1.c receive_message.c -o bank1 -lpthread 时,我遇到了这些错误,我无法从中得出正面或反面:
bank1.c: In function ‘receive_message’:
bank1.c:15:1: error: parameter ‘desks’ is initialized
int desks = 10;
^
bank1.c:16:1: error: parameter ‘N’ is initialized
int N = 2;
^
bank1.c:17:1: error: parameter ‘running’ is initialized
int running = 0;
^
bank1.c:20:1: error: parameter ‘balance’ is initialized
int balance = 20;
^
bank1.c:24:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
{
^
bank1.c:55:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
{
^
In file included from bank1.c:11:0:
receive_message.h:9:8: error: old-style parameter declarations in prototyped function definition
char** receive_message(key_t key, char** ret)
^
bank1.c:87:1: error: expected ‘{’ at end of input
}
^
我假设错误出在头文件中,但我不确定。当来自 receive_message.c 的代码在 bank1.c 中时,文件按预期运行
最佳答案
很遗憾,我无法发表评论,所以这里是对 Michiel 已经指出的内容的补充:
确保只定义一次struct msgbuf
。现在它在 header 和您的 .c 文件中定义。此外,您似乎无论如何都需要在 .c 文件中使用它,因此您可以在 .c 文件中将其声明为 static 而不是在头文件中公开!
关于c - 将函数移动到自己的文件时出现多个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34093439/
只是想知道 Jquery Mobile 是否足够稳定以用于实时生产企业移动应用程序。 有很多 HTML5 框架,因为我们的团队使用 JQuery 已经有一段时间了,我们更愿意使用 Jquery 移动框
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 3 年前。 Improve t
所以我尝试在 JavaScript 中对元素进行拖放。我使用的视频教程在这里; https://www.youtube.com/watch?v=KTlZ4Hs5h80 。我已经按照它的说明进行了编码,
无法在移动 iOS(safari 和 chrome)上自动播放以前缓存的 mp3 音频 我正在 Angular 8 中开发一个应用程序,在该应用程序的一部分中,我试图在对象数组中缓存几个传入的音频 m
Git 基于内容而不是文件,所以我目前理解以下行为,但我想知道是否有特殊选项或 hack 来检测此类事情: git init mkdir -p foo/bar echo "test" foo/a.tx
我正在寻找语义 ui 正确的类来隐藏例如移动 View 中的 DIV。在 Bootstrap 中,我们有“visible-xs”和“hidden-xs”。 但是在语义ui上我只找到了“仅移动网格” 最
我正在使用 ubuntu 和 想要移动或复制大文件。 但是当我与其他人一起使用服务器时,我不想拥有所有内存并使其他进程几乎停止。 那么有没有办法在内存使用受限的情况下移动或复制文件? 最佳答案 如果你
这些指令有什么区别?以 ARM9 处理器为例,它不应该是: ASM: mov r0, 0 C: r0 = 0; ASM: ld r0, 0 C: r0 = 0; ? 我不知道为什么要使用一个或另一个:
我有一个文件夹,其中包含一些随机命名的文件,其中包含我需要的数据。 为了使用数据,我必须将文件移动到另一个文件夹并将文件命名为“file1.xml” 每次移动和重命名文件时,它都会替换目标文件夹中以前
我经常在 IB/Storyboard 中堆叠对象,几乎不可能拖动其他对象后面的对象而不移动前面的对象。无论如何我可以移动已经选择但位于其他对象后面的对象吗?当我尝试移动它时,它总是选择顶部的对象,还是
几个月前,我看到 Safari 7 允许推送通知,它似乎是一个非常有用的工具,除了我看到的每个示例都专注于桌面浏览,而不是移动设备。 Safari 推送通知是否可以在移动设备上运行,如果没有,是否有计
我有一个简单的 View 模型,其中包含修改后的 ObservableCollection使用 SynchronizationContext.Current.Send在 UI 线程上执行对集合的更改。
关于cassandra创建的数据文件和系统文件的位置,我需要移动在“cassandra.yaml”配置文件中设置的“commitlog_directory”、“data_file_directorie
我有这个代码 $(function() { var message = 'Dont forget us'; var original; var txt1 = ' - '; $(wind
我的客户报告说他的网站有一个奇怪的问题。该网站的 URL 是 your-montenegro.me 在 基于 Android 的浏览器 上加载时,页面底部会出现一个奇怪的空白区域。以下是屏幕截图: 华
我有这个 HTML 标记: Express 300 bsf Sign Up 我需要将元素从 DOM 上的一个
我有一个可重新排序的 TableView (UITableView 实例)。尽管我已经实现了 UITableViewDataSource 方法: tableView:moveRowAtIndexPat
我的客户报告说他的网站有一个奇怪的问题。该网站的 URL 是 your-montenegro.me 在 基于 Android 的浏览器 上加载时,页面底部会出现一个奇怪的空白区域。以下是屏幕截图: 华
我需要在拖放或复制/剪切和粘贴(复制与移动)期间获取操作类型。它是一个 Swing 应用程序,并且实现了 TransferHandle。我在操作结束时需要此信息,在 importData 方法中。 对
我编写了一个具有 add 和 get 方法的 SortedIntList 类。 我调用以下四个方法: SortedIntList mySortedIntList = new SortedIntList
我是一名优秀的程序员,十分优秀!