List Info

Thread: CR:Build error for http file system for ARMV5 UDEB target




CR:Build error for http file system for ARMV5 UDEB target
user name
2008-02-12 12:02:10

"Nokia submits this code under the terms of a commercial contribution agreement with Real Networks, and I am authorized to contribute this code under said agreement."

    Modified by:  Praveen.Thimmashettynokia.com

    Reviewed by:

    Date: 12-February-2008

    Project: SymbianMmf

      ErrorId: SUB 409-795

               ;
    Synopsis:  CR:Build error for http file system for ARMV5 UDEB target
                    Updated to remove initialized data.
                   
    Root Cause of the problem: Implementation
     
    Files Modified:
    filesystemhttphttpfsys.cpp

    New files added:
    None.


    Image Size and Heap Use impact: no major impact

    Module Release testing (STIF) :  Passed.

    Test case(s) Added ; :  No.

    Memory leak check performed : Yes.  No new leaks introduced.

    Platforms and Profiles Build Verified: helix-client-s60-32-mmf-mdf-arm

    Platforms and Profiles Functionality verified: armv5,winscw

      Branch: hxclient_2_1_0_cayennes & HEAD

<<diff.txt>&gt;

  
CR:Build error for http file system for ARMV5 UDEB target
country flaguser name
United States
2008-02-12 12:18:33
No need to CC anything except the filesystem-dev list here.
We try to
keep the amount of cross-posting down.

Index: httpfsys.cpp
============================================================
=======
RCS file: /cvsroot/filesystem/http/httpfsys.cpp,v
retrieving revision 1.88.2.3
diff -w -u -b -r1.88.2.3 httpfsys.cpp
 -1755,12
+1755,16 
      HXScopeLock lock(m_pMutex);

      HX_RESULT           lResult      = HXR_OK;
+#if !defined(HELIX_CONFIG_NOSTATICS)
      static UINT32       ulReadCount  = 0;
+#endif
      HX_RESULT           lSocketReadResult = HXR_OK;
      UINT32              ulCurrentContig = 0;

+#if !defined(HELIX_CONFIG_NOSTATICS)
      HXLOGL3(HXLOG_HTTP, "Read #%03lu, Pos is %lu,
Size is %4lu, Recurs is %2u, FileObj is '%s'",
              ++ulReadCount, m_ulCurrentReadPosition,
ulCount, m_ulRecursionCount + 1, NULLOK(m_pFilename));
+#endif


I like this change better:


Index: httpfsys.cpp
============================================================
=======
RCS file: /cvsroot/filesystem/http/httpfsys.cpp,v
retrieving revision 1.109.2.6
diff -u -w -r1.109.2.6 httpfsys.cpp
--- httpfsys.cpp        18 Jan 2008 20:47:18 -0000     
1.109.2.6
+++ httpfsys.cpp        12 Feb 2008 18:15:12 -0000
 -1710,12
+1710,14 
      HXScopeLock lock(m_pMutex);

      HX_RESULT           lResult      = HXR_OK;
-    static UINT32       ulReadCount  = 0;
      HX_RESULT           lSocketReadResult = HXR_OK;
      UINT32              ulCurrentContig = 0;

+#if !defined(HELIX_CONFIG_NOSTATICS)
+    static UINT32       ulReadCount  = 0;
      HXLOGL3(HXLOG_HTTP, "Read #%03lu, Pos is %lu,
Size is %4lu, Recurs is %2u, FileObj is '%s'",
              ++ulReadCount, m_ulCurrentReadPosition,
ulCount, m_ulRecursionCount + 1, NULLOK(m_pFilename));
+#endif

      if (m_LastError)
      {


Do you also need it on the new branch?
--greg.


Praveen.Thimmashettynokia.com wrote:
> 
> "Nokia submits this code under the terms of a
commercial contribution 
> agreement with Real Networks, and I am authorized to
contribute this 
> code under said agreement."
> 
>       Modified by:  Praveen.Thimmashettynokia.com
> 
>       Reviewed by:
> 
>       Date: 12-February-2008
> 
>       Project: SymbianMmf
> 
>       ErrorId*** SUB
409-795
> 
>                  
>       Synopsis:  CR:Build error for http file system
for ARMV5 UDEB target
>                       Updated to remove initialized
data.
>                      
>       Root Cause of the problem: Implementation
>        
>       Files Modified:
>       filesystemhttphttpfsys.cpp
> 
>       New files added:
>       None.
> 
> 
>       Image Size and Heap Use impact: no major impact
> 
>       Module Release testing (STIF) :  Passed.
> 
>       Test case(s) Added  :  No.
> 
>       Memory leak check performed : Yes.  No new leaks
introduced.
> 
>       Platforms and Profiles Build Verified:
>       helix-client-s60-32-mmf-mdf-arm
> 
>       Platforms and Profiles Functionality verified:
armv5,winscw
> 
>       Branch: hxclient_2_1_0_cayennes & HEAD
> 
> <<diff.txt>>
> 
> 
>
------------------------------------------------------------
------------
> 
> _______________________________________________
> Client-dev mailing list
> Client-devhelixcommunity.org
> http://lists.helixcommunity.org/mailman/listinfo/clie
nt-dev


_______________________________________________
Filesystem-dev mailing list
Filesystem-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/
filesystem-dev

CN:Build error for http file system for ARMV5 UDEB target
user name
2008-02-12 14:32:55
Hi Greg,

Thanks for your suggestion. I have checked in the changes to
HEAD and
210Cays.

Thanks
Praveen


-----Original Message-----
From: ext Greg Wright [mailto:gwrightreal.com] 
Sent: Tuesday, February 12, 2008 12:19 PM
To: Thimmashetty Praveen (Nokia-D-MSW/Dallas)
Cc: filesystem-devhelixcommunity.org
Subject: Re: [Client-dev] CR:Build error for http file
system for ARMV5
UDEB target

No need to CC anything except the filesystem-dev list here.
We try to
keep the amount of cross-posting down.

Index: httpfsys.cpp
============================================================
=======
RCS file: /cvsroot/filesystem/http/httpfsys.cpp,v
retrieving revision 1.88.2.3
diff -w -u -b -r1.88.2.3 httpfsys.cpp
 -1755,12
+1755,16 
      HXScopeLock lock(m_pMutex);

      HX_RESULT           lResult      = HXR_OK;
+#if !defined(HELIX_CONFIG_NOSTATICS)
      static UINT32       ulReadCount  = 0;
+#endif
      HX_RESULT           lSocketReadResult = HXR_OK;
      UINT32              ulCurrentContig = 0;

+#if !defined(HELIX_CONFIG_NOSTATICS)
      HXLOGL3(HXLOG_HTTP, "Read #%03lu, Pos is %lu,
Size is %4lu, Recurs
is %2u, FileObj is '%s'",
              ++ulReadCount, m_ulCurrentReadPosition,
ulCount,
m_ulRecursionCount + 1, NULLOK(m_pFilename));
+#endif


I like this change better:


Index: httpfsys.cpp
============================================================
=======
RCS file: /cvsroot/filesystem/http/httpfsys.cpp,v
retrieving revision 1.109.2.6
diff -u -w -r1.109.2.6 httpfsys.cpp
--- httpfsys.cpp        18 Jan 2008 20:47:18 -0000     
1.109.2.6
+++ httpfsys.cpp        12 Feb 2008 18:15:12 -0000
 -1710,12
+1710,14 
      HXScopeLock lock(m_pMutex);

      HX_RESULT           lResult      = HXR_OK;
-    static UINT32       ulReadCount  = 0;
      HX_RESULT           lSocketReadResult = HXR_OK;
      UINT32              ulCurrentContig = 0;

+#if !defined(HELIX_CONFIG_NOSTATICS)
+    static UINT32       ulReadCount  = 0;
      HXLOGL3(HXLOG_HTTP, "Read #%03lu, Pos is %lu,
Size is %4lu, Recurs
is %2u, FileObj is '%s'",
              ++ulReadCount, m_ulCurrentReadPosition,
ulCount,
m_ulRecursionCount + 1, NULLOK(m_pFilename));
+#endif

      if (m_LastError)
      {


Do you also need it on the new branch?
--greg.


Praveen.Thimmashettynokia.com wrote:
> 
> "Nokia submits this code under the terms of a
commercial contribution 
> agreement with Real Networks, and I am authorized to
contribute this 
> code under said agreement."
> 
>       Modified by:  Praveen.Thimmashettynokia.com
> 
>       Reviewed by:
> 
>       Date: 12-February-2008
> 
>       Project: SymbianMmf
> 
>       ErrorId*** SUB
409-795
> 
>                  
>       Synopsis:  CR:Build error for http file system
for ARMV5 UDEB
target
>                       Updated to remove initialized
data.
>                      
>       Root Cause of the problem: Implementation
>        
>       Files Modified:
>       filesystemhttphttpfsys.cpp
> 
>       New files added:
>       None.
> 
> 
>       Image Size and Heap Use impact: no major impact
> 
>       Module Release testing (STIF) :  Passed.
> 
>       Test case(s) Added  :  No.
> 
>       Memory leak check performed : Yes.  No new leaks
introduced.
> 
>       Platforms and Profiles Build Verified:
>       helix-client-s60-32-mmf-mdf-arm
> 
>       Platforms and Profiles Functionality verified:
armv5,winscw
> 
>       Branch: hxclient_2_1_0_cayennes & HEAD
> 
> <<diff.txt>>
> 
> 
>
------------------------------------------------------------
----------
> --
> 
> _______________________________________________
> Client-dev mailing list
> Client-devhelixcommunity.org
> http://lists.helixcommunity.org/mailman/listinfo/clie
nt-dev


_______________________________________________
Filesystem-dev mailing list
Filesystem-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/
filesystem-dev

[1-3]

about | contact  Other archives ( Real Estate discussion Medical topics )