Хорошо, поэтому, согласно этому сообщению , я понимаю, что пытаюсь получить доступ к памяти, к которой у меня нет доступа. Единственное, о чем я могу думать, - это где я создаю экземпляр задачи и присваиваю ей значения, но, глядя на этот пост, я не вижу, где моя реализация неверна.
Любая помощь будет принята с благодарностью.
#include "task.h"
struct node{
Task *task;
struct node *next;
};
void insert(struct node **head, Task *task);
void delete(struct node **head, Task *task);
void traverse(struct node *head);
#ifndef TASK_H
#define TASK_H
typedef struct task{
char *name;
int tid;
int priority;
int burst;
} Task;
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "list.h"
#include "task.h"
#include "schedulers.h"
void add(char *name, int priority, int burst){
printf("beginning of add\n"); // Just a test. I never see this message print
static int x = 1;
struct node *list_head = NULL;
Task xtask = (Task) { .name = name, .tid = x, .priority = priority, .burst = burst};
insert(&list_head, &xtask);
x++;
}
void schedule(){
printf("test"); // just a place holder for now
}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "task.h"
#include "list.h"
#include schedulers.h"
#define SIZE 100
int main(int argc, char ** argv[]){
FILE *in;
char *temp;
char task[SIZE];
char *name;
int priority;
int burst;
in = fopen(argv[1], "r");
if (argv[1] != NULL){
while (fgets(task, SIZE, in) != NULL){
temp = strdup(task);
name = strsep(&temp, ",");
priority = atoi(strsep(&temp, ","));
burst = atoi(strsep(&temp, ","));
add(name, priority, burst);
free(temp);
}
fclose(in);
}
else{
printf("invalid\n");
return 0;
}
schedule();
return 0;
}
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "list.h"
#include "task.h"
void insert(struct node **head, Task *newTask){
struct node *newNode = malloc(sizeof(struct node));
newNode ->task = newTask;
newNode ->next = *head;
*head = newNode;
}
void delete(struct node **head, Task *task){
struct node *temp;
struct node *prev;
temp = *head;
if (strcmp(task ->name, temp -> task -> name) == 0){
*head = (*head) -> next;
}
else {
prev = *head;
temp = temp -> next;
while (strcmp(task -> name, temp -> task -> name) != 0) {
prev = temp;
temp = temp -> next;
}
prev -> next = temp -> next;
}
}
void traverse(struct node *head){
struct node *temp;
temp = head;
while (temp != NULL){
printf("[%s] [%d] [%d]\n", temp-> task -> name, temp -> task -> priority, temp -> task -> burst);
temp = temp -> next;
}
}