
Game Syscalls Flashcards

Flashcard
•
Computers
•
University
•
Hard
Petronela Vieru
FREE Resource
Student preview

8 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Back
Students with: open(), read(), close() step forward in order.
2.
FLASHCARD QUESTION
Front
Back
The program should create a directory named "Hunt1", create a file called "treasures.dat" inside it, write a welcome message, and handle errors at every step.
3.
FLASHCARD QUESTION
Front
Back
1. creat or open
2. fstat
3.write
4. close
5. perror for all of them
4.
FLASHCARD QUESTION
Front
LEVEL 2
A program needs to create a folder, create a file inside it, read some data, and close it.
Back
Expected calls: mkdir(), open(), read(), close()
5.
FLASHCARD QUESTION
Front
LEVEL 3
Inside Directory Dir1, create a file and write to it the text "Hello", read the message from the same file. If any step fails, an error should be printed.
Back
Expected calls: mkdir(), open() or creat(), write(), close(), open(), read(), close(), perror() for each.
6.
FLASHCARD QUESTION
Front
LEVEL 4
The program should check if "entry" is a regular file. In case it is, it reads from it 4 bytes. The read content is written at the end (be careful here) to a newly created file2.txt. In case is a directory, it must be renamed it. In case it is a symbolic link, it removes the link.
Back
lstat() — Check metadata of entry
S_ISREG — Evaluate st_mode to ensure it's a regular file
open() — Open entry in read-only mode
read() — Read 4 bytes from file1.txt
close() — Close file1.txt
creat() or open()— Open file2.txt in write or create mode
lseek() - for writing at the end
write() — Write the 4 bytes read into file2.txt
close() — Close file2.txt
S_ISDIR() + rename()
S_ISLNK + unlink()
perror() — Should step in any time an error occurs
7.
FLASHCARD QUESTION
Front
LEVEL 5
Create a directory called Hunt1, add a treasure file and a log file, and create a symbolic link to the log file. At the end, remove the directory.
Back
✅ mkdir() — Create the Hunt1 directory
✅ open() — Open (or create) Hunt1/treasures.dat with O_CREAT
✅ close() — Close the treasures file
✅ open() — Open (or create) Hunt1/logged_hunt with O_CREAT
✅ close() — Close the log file
✅ symlink() — Create symbolic link from Hunt1/logged_hunt to logged_hunt-Hunt1 in the root directory
rmdir() -
🔁 perror() — May appear after any step to report an error if one occurs (e.g., directory already exists)
8.
FLASHCARD QUESTION
Front
LEVEL 6
You are given a file name.
The program should:
Check whether the path is a symbolic link
If it is, remove its link to the target file.
Check whether is a regular file, in which case we delete the file.
Check whether is a directory, in which case we delete it.
Back
✅ Required System Calls & Macros (in execution order)
StepFunction/MacroPurpose1️⃣lstat()Get file metadata without following symlinks2️⃣S_ISLNK()Check if it's a symbolic link3️⃣unlink()Remove symbolic link
✔️ At this point, if it was a symlink, the job is done.
Otherwise, continue:
StepFunction/MacroPurpose4️⃣stat()Get metadata by following symlinks (e.g., if it points to a real file)5️⃣S_ISREG()Check if it’s a regular file6️⃣unlink()Delete regular file
StepFunction/MacroPurpose7️⃣S_ISDIR()Check if it’s a directory8️⃣rmdir()Remove the directory (if empty)
🔁 perror() is used for error handling in any failure (e.g., file not found, permission denied)
Similar Resources on Wayground
15 questions
BIOinfo_Bootcamp_Flashcard1

Flashcard
•
University
6 questions
PowerShell and Windows Server

Flashcard
•
12th Grade - Professi...
9 questions
Domain 5 Test

Flashcard
•
12th Grade
9 questions
Class of Informatika 12

Flashcard
•
12th Grade
6 questions
3.2.3 Mastery Check

Flashcard
•
11th Grade
6 questions
SECV2223-02 GROUP 2: WEB ARCHITECTURE

Flashcard
•
University
8 questions
Formats and Bitrate

Flashcard
•
12th Grade
9 questions
W5.Q1 Understanding Taxes Review

Flashcard
•
12th Grade
Popular Resources on Wayground
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World

Quiz
•
3rd - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
20 questions
ELA Advisory Review

Quiz
•
7th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns

Quiz
•
3rd Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
11 questions
NFL Football logos

Quiz
•
KG - Professional Dev...
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
36 questions
Unit 5 Key Terms

Quiz
•
11th Grade - University
38 questions
Unit 6 Key Terms

Quiz
•
11th Grade - University
20 questions
La Hora

Quiz
•
9th Grade - University
7 questions
Cell Transport

Interactive video
•
11th Grade - University
7 questions
What Is Narrative Writing?

Interactive video
•
4th Grade - University