diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-01-16 17:35:41 +0200 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-01-16 17:35:41 +0200 |
commit | d78b73e2ca216777e17066091ef449e9cdaffae7 (patch) | |
tree | 082198023b2dcc680252a05b9d50475c4048c430 /checkfs/comm.c | |
parent | 396643e2cbf05cdc3d2a8fa34cf2d4f8cc1d8441 (diff) |
tests: move checkfs test to tests directory
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'checkfs/comm.c')
-rw-r--r-- | checkfs/comm.c | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/checkfs/comm.c b/checkfs/comm.c deleted file mode 100644 index 57fc7ed..0000000 --- a/checkfs/comm.c +++ /dev/null @@ -1,67 +0,0 @@ -/* - File: comm.c - Desc: This file implements the actual transmission portion - of the "ok to power me down" message to the remote - power cycling black box. - - It's been sepatated into a separate file so that - it may be replaced by any other comm mechanism desired. - - (including none or non serial mode at all) - - $Id: comm.c,v 1.3 2005/11/07 11:15:17 gleixner Exp $ - $Log: comm.c,v $ - Revision 1.3 2005/11/07 11:15:17 gleixner - [MTD / JFFS2] Clean up trailing white spaces - - Revision 1.2 2001/06/21 23:07:18 dwmw2 - Initial import to MTD CVS - - Revision 1.1 2001/06/08 22:26:05 vipin - Split the modbus comm part of the program (that sends the ok to pwr me down - message) into another file "comm.c" - - - - */ - -#include <stdio.h> -#include <stdlib.h> -#include <unistd.h> - - - -/* - This is the routine that forms and - sends the "ok to pwr me down" message - to the remote power cycling "black box". - - */ -int do_pwr_dn(int fd, int cycleCnt) -{ - - char buf[200]; - - sprintf(buf, "ok to power me down!\nCount = %i\n", cycleCnt); - - if(write(fd, buf, strlen(buf)) < strlen(buf)) - { - perror("write error"); - return -1; - } - - return 0; -} - - - - - - - - - - - - - |