Revision: 15389
          http://sourceforge.net/p/edk2/code/15389
Author:   oliviermartin
Date:     2014-03-25 11:03:54 +0000 (Tue, 25 Mar 2014)
Log Message:
-----------
ArmPkg/SemihostLib: Made arguments 'native' size

The arguments passed to the semi-hosing backend should
be of 'native' size to match register widths.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Harry Liebel <[email protected]>
Reviewed-by: Olivier Martin <[email protected]>

Modified Paths:
--------------
    trunk/edk2/ArmPkg/Library/SemihostLib/SemihostPrivate.h

Modified: trunk/edk2/ArmPkg/Library/SemihostLib/SemihostPrivate.h
===================================================================
--- trunk/edk2/ArmPkg/Library/SemihostLib/SemihostPrivate.h     2014-03-25 
06:56:55 UTC (rev 15388)
+++ trunk/edk2/ArmPkg/Library/SemihostLib/SemihostPrivate.h     2014-03-25 
11:03:54 UTC (rev 15389)
@@ -1,6 +1,7 @@
 /** @file
 
   Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
+  Copyright (c) 2013 - 2014, ARM Ltd. All rights reserved.<BR>
 
   This program and the accompanying materials
   are licensed and made available under the terms and conditions of the BSD 
License
@@ -17,29 +18,29 @@
 
 typedef struct {
   CHAR8   *FileName;
-  UINT32  Mode;
-  UINT32  NameLength;
+  UINTN    Mode;
+  UINTN    NameLength;
 } SEMIHOST_FILE_OPEN_BLOCK;
 
 typedef struct {
-  UINT32  Handle;
+  UINTN    Handle;
   VOID    *Buffer;
-  UINT32  Length;
+  UINTN    Length;
 } SEMIHOST_FILE_READ_WRITE_BLOCK;
 
 typedef struct {
-  UINT32  Handle;
-  UINT32  Location;
+  UINTN    Handle;
+  UINTN    Location;
 } SEMIHOST_FILE_SEEK_BLOCK;
 
 typedef struct {
   CHAR8   *FileName;
-  UINT32  NameLength;
+  UINTN    NameLength;
 } SEMIHOST_FILE_REMOVE_BLOCK;
 
 typedef struct {
   CHAR8   *CommandLine;
-  UINT32  CommandLength;
+  UINTN    CommandLength;
 } SEMIHOST_SYSTEM_BLOCK;
 
 #if defined(__CC_ARM) 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to