Skip to content
Snippets Groups Projects
Commit bc9d8098 authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Initial commit

parents
Branches
No related merge requests found
###
# EditorConfig file for C/C++ Language projects.
# See https://editorconfig.org/ for documentation.
#
# https://git.brandon-rodriguez.com/other/editorconfig
# Version 1.0
##
# Stop editorconfig from searching further above current directory.
root = true
###
# Default styles for all files.
##
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
###
# Tab styles that should be four spaces per tab.
# Most languages will fall under this.
##
[*.{c,cc,cpp,h,json,md,o,sh,yaml}]
indent_size = 4
###
# Tab styles that should be two spaces per tab.
# Only very nested languages should be put here.
##
# None so far.
###
# GitIgnore file for C Language projects.
# See https://git-scm.com/docs/gitignore for documentation.
#
# https://git.brandon-rodriguez.com/other/gitignore
# Version 1.0.3
##
# Ignore system files.
.DS_Store
Thumbs.db
# Ignore environment settings.
.vs/
.vscode/
vs/
vscode/
# Ignore temporary files.
[Tt]mp/
[Tt]emp/
[Tt]empfiles/
[Tt]emp_files/
*.tmp
*.temp
# Ignore compiled files.
*.o
*.obj
*.out
# Ignore logfiles.
[Ll]og/
[Ll]ogs/
*.log
*.log.*
###
# Project-specific ignores go below here.
##
main.c 0 → 100644
/**
* An implementation of various Load Balancing schemes, to examine the concepts of Isoefficiency.
*/
// Import headers.
#include <ctype.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
// Method Declaration.
// Global Variables.
/**
* Program's main. Initialized and runs program.
*/
int main(int argc, char* argv[]) {
printf("Initializing program.\n");
printf("Terminating program.\n");
}
all:
gcc -Wall -Wpedantic -std=c99 main.c -g -o main.out -pthread
# C - Load Balancing & Isoefficiency
## Description
An implementation of various Load Balancing schemes, to examine the concepts of Isoefficiency.
## Running the Program
Compile with `make all`.
Run program with `./main.out`.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment