Sponsored Content
Top Forums Programming Trying to write a program to fill up my harddrive (Linux/C) Post 302356727 by Tiglet on Sunday 27th of September 2009 06:36:35 AM
Old 09-27-2009
just that, thanks man, I was just trying to write some programs that will stress my system. Like max out CPU power and max out network etc...

I'm studying for some exam and we might have to write a program like that ourselves so I was trying to make one myself.

Thanks for your help mate!
 

10 More Discussions You Might Find Interesting

1. Programming

how can i write process_pool program?

i want to write a server process in the sco unix 505.The server process will fork multi-child-processes when it first starts.once parent process listen and accept any connect from client,it will transfer the connected sockfd to any free child process and child process will read client request from... (4 Replies)
Discussion started by: hit
4 Replies

2. UNIX for Dummies Questions & Answers

How do you defragment you harddrive in unix (Madrake Linux 9.0)?

Subject says it all... (3 Replies)
Discussion started by: pudad
3 Replies

3. Linux

Mount a harddrive in linux.

Hey people i'm very new to linux. I just put a extra 200 gig maxtor HD in my computer. Linux can tell it's there...but it says it cant mount it. How do i mount it manually? thanks, John (2 Replies)
Discussion started by: RKJV
2 Replies

4. Shell Programming and Scripting

write a c program that simulates ls command

i need the a c program that simulates the "ls" command:b: (5 Replies)
Discussion started by: madhu.it
5 Replies

5. UNIX for Dummies Questions & Answers

How to copy MBR from old harddrive to new harddrive?

How do I copy the master boot record from one harddrive to another or how to install just the MBR? (7 Replies)
Discussion started by: shorty
7 Replies

6. Shell Programming and Scripting

how to write next line program

Hi, I am having an input file which contains a group of words,if one specific word comes which goes to next line. example: input file===> shashi country= india comapny= none shashi shashi company= NONE shashi=my name output===> shashi country= india comapny= none shashi shashi... (6 Replies)
Discussion started by: hegdeshashi
6 Replies

7. Shell Programming and Scripting

how to write a shell program for back up

Hello.. I want to take back up from server to local machine and i dont know how to do it using cron and sftp . I can do it by manually typing password in the terminal and taking the back up. How to create a 'backup.sh' file for doing all the back up process and shut down automatically after... (1 Reply)
Discussion started by: deepoos
1 Replies

8. Shell Programming and Scripting

How do you write this program/script?

I need help with the following. 1) Write a program in any language that takes a single integer array parameter and returns the decimal average of the input values. 2) Write a program, in any language, that prints the integers from 1 to 10, along with a cumulative sum of the integers printed... (1 Reply)
Discussion started by: sqa4life
1 Replies

9. UNIX for Dummies Questions & Answers

How to write files for compiling a program.?

I am hoping someone can give me a good free web resource for writing code to compile a binary executable. I am getting fairly decent at writing shell script, are the .f files just shell scripts? Also, I don't know where to begin on the makefiles. The reason I am curious is because I have been... (6 Replies)
Discussion started by: butson
6 Replies

10. Fedora

Partitioning harddrive for installing Linux alongside win 7.

I'm planning on using two Linux OS's alongside win 7, one being Fedora KDE 30. So to prepare for the install I partitioned my harddrive using the Minitool Partition Wizard. I have a 320 GB hdd, so I nade one partiotion about 80 GB forFedora and then left about 70 GB as unused, to later... (2 Replies)
Discussion started by: AndersA
2 Replies
OTHERQ(9F)						   Kernel Functions for Drivers 						OTHERQ(9F)

NAME
       OTHERQ, otherq - get pointer to queue's partner queue

SYNOPSIS
       #include <sys/stream.h>
       #include <sys/ddi.h>

       queue_t *OTHERQ(queue_t *q);

INTERFACE LEVEL
       Architecture independent level 1 (DDI/DKI).

PARAMETERS
       q	Pointer to the queue.

DESCRIPTION
       The  OTHERQ()  function returns a pointer to the other of the two queue structures that make up a STREAMS module or driver.  If q points to
       the read queue the write queue will be returned, and vice versa.

RETURN VALUES
       OTHERQ() returns a pointer to a queue's partner.

CONTEXT
       OTHERQ() can be called from user or interrupt context.

EXAMPLES
       Example 1: Setting Queues

       This routine sets the minimum packet size, the maximum packet size, the high water mark, and the low water mark	for  the  read	and  write
       queues  of  a given module or driver. It is passed either one of the queues.  This could be used if a module or driver wished to update its
       queue parameters dynamically.

	1  void
	2  set_q_params(q, min, max, hi, lo)
	3      queue_t *q;
	4      short min;
	5      short max;
	6      ushort_t hi;
	7      ushort_t lo;
	8  {
	9	    q->q_minpsz = min;
       10	    q->q_maxpsz = max;
       11	    q->q_hiwat = hi;
       12	      q->q_lowat = lo;
       13	    OTHERQ(q)->q_minpsz = min;
       14	    OTHERQ(q)->q_maxpsz = max;
       15	    OTHERQ(q)->q_hiwat = hi;
       16	    OTHERQ(q)->q_lowat = lo;
       17  }

SEE ALSO
       Writing Device Drivers

       STREAMS Programming Guide

SunOS 5.10							    11 Apr 1991 							OTHERQ(9F)
All times are GMT -4. The time now is 03:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy