[Tinyos-2-commits] CVS: tinyos-2.x/apps/tests/storage/Log
RandRWC.nc, 1.1.2.5, 1.1.2.6
Jonathan Hui
jwhui at users.sourceforge.net
Tue Jun 6 13:45:34 PDT 2006
- Previous message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/stm25p LogStorageC.nc,
1.1.2.2, 1.1.2.3 Stm25pLogConfigP.nc, NONE,
1.1.2.1 Stm25pLogP.nc, NONE, 1.1.2.1 BlockStorageC.nc, 1.1.2.8,
1.1.2.9 Stm25pBinderP.nc, 1.1.2.4, 1.1.2.5 Stm25pBlockP.nc,
1.1.2.7, 1.1.2.8 Stm25pSector.nc, 1.1.2.4,
1.1.2.5 Stm25pSectorC.nc, 1.1.2.7, 1.1.2.8 Stm25pSectorP.nc,
1.1.2.9, 1.1.2.10 Stm25pSpi.nc, 1.1.2.4, 1.1.2.5 Stm25pSpiC.nc,
1.1.2.5, 1.1.2.6 Stm25pSpiP.nc, 1.1.2.9,
1.1.2.10 Stm25pVolume.nc, 1.1.2.4, 1.1.2.5 StorageMap.nc,
1.1.2.3, 1.1.2.4 Storage_chip.h, 1.1.2.6, 1.1.2.7
- Next message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/tossim
SerialActiveMessageC.nc, NONE, 1.1.2.1 ActiveMessageC.nc,
1.1.2.1, 1.1.2.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/tinyos/tinyos-2.x/apps/tests/storage/Log
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6062
Modified Files:
Tag: tinyos-2_0_devel-BRANCH
RandRWC.nc
Log Message:
Make max size of appends smaller.
Index: RandRWC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/tests/storage/Log/Attic/RandRWC.nc,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -C2 -d -r1.1.2.5 -r1.1.2.6
*** RandRWC.nc 1 Jun 2006 16:35:31 -0000 1.1.2.5
--- RandRWC.nc 6 Jun 2006 20:45:31 -0000 1.1.2.6
***************
*** 107,112 ****
void setParameters() {
! len = rand() >> 7;
! offset = rand() >> 8;
if (offset + len > sizeof data)
offset = sizeof data - len;
--- 107,114 ----
void setParameters() {
! len = rand() >> 8;
! offset = rand() >> 9;
! if ( len > 254 )
! len = 254;
if (offset + len > sizeof data)
offset = sizeof data - len;
- Previous message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/stm25p LogStorageC.nc,
1.1.2.2, 1.1.2.3 Stm25pLogConfigP.nc, NONE,
1.1.2.1 Stm25pLogP.nc, NONE, 1.1.2.1 BlockStorageC.nc, 1.1.2.8,
1.1.2.9 Stm25pBinderP.nc, 1.1.2.4, 1.1.2.5 Stm25pBlockP.nc,
1.1.2.7, 1.1.2.8 Stm25pSector.nc, 1.1.2.4,
1.1.2.5 Stm25pSectorC.nc, 1.1.2.7, 1.1.2.8 Stm25pSectorP.nc,
1.1.2.9, 1.1.2.10 Stm25pSpi.nc, 1.1.2.4, 1.1.2.5 Stm25pSpiC.nc,
1.1.2.5, 1.1.2.6 Stm25pSpiP.nc, 1.1.2.9,
1.1.2.10 Stm25pVolume.nc, 1.1.2.4, 1.1.2.5 StorageMap.nc,
1.1.2.3, 1.1.2.4 Storage_chip.h, 1.1.2.6, 1.1.2.7
- Next message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/tossim
SerialActiveMessageC.nc, NONE, 1.1.2.1 ActiveMessageC.nc,
1.1.2.1, 1.1.2.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Tinyos-2-commits
mailing list