Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C program to create a mmap() that is shared by multiple threads. Use fstat() to obtain the size of the mapped file to

Write a C program to create a mmap() that is shared by multiple threads. Use fstat() to obtain the size of the mapped file to size the mapping. Find out the number of logical processors (or cores) available programmatically by calling sysconf(), as shown, and display this number.

int numCPU = sysconf(_SC_NPROCESSORS_ONLN);

For this problem, however, you are going to create four (4) threads only. Every thread should see the mapping. Each thread will display separate partial contents (sb.st_size/4 bytes) of the file.

Finally, unmap and close the file.

Please show the command line of how to comiple and run the code and the screenshots

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And SQL For DB2

Authors: James Cooper

1st Edition

1583473572, 978-1583473573

Students also viewed these Databases questions

Question

Identify the major areas that are regulated.

Answered: 1 week ago