Advertise Here
Advertise Here
Advertise Here
Advertise Here
Page 34 of 137 FirstFirst ... 92429323334353639445984134 ... LastLast
Results 331 to 340 of 1365

Thread: ║➽║OScam║➽║Emu Varıous Platforms║v.11.964║

  1. #331
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5297 | alno | 2011-05-25 23:28:57 +02.00 (Wed, 25 May 2011) | 1 lines
    
    LCD: corrected statusmessages
    -------------------------------------------------------------------------
    r5296 | alno | 2011-05-25 23:10:11 +02.00 (Wed, 25 May 2011) | 1 lines
    
    LCD: re-implement filter for idle clients >10 sec idle

  2. Advertise Here
  3. #332
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5298 | Admin | 2011-05-26 16:25:41 +02.00 (Thu, 26 May 2011) | 4 lines
    
    Refactor parameter parsing to make it more threadsafe (actually, memcpy is also not completely threadsafe but it should be enough) and to remove "clearing" workarounds. Please report in the webinterface forum thread if you experience any saving problems from this change.
    -------------------------------------------------------------------------
    r5297 | alno | 2011-05-25 23:28:57 +02.00 (Wed, 25 May 2011) | 1 line
    
    LCD: corrected statusmessages

  4. #333
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5299 | Admin | 2011-05-26 17:32:59 +02.00 (Thu, 26 May 2011) | 10 lines
    
    Replace all malloc/calloc calls (in main OSCam directory) with cs_malloc and add handling for memory allocation failures.
    -------------------------------------------------------------------------
    r5298 | Admin | 2011-05-26 16:25:41 +02.00 (Thu, 26 May 2011) | 4 lines
    
    Refactor parameter parsing to make it more threadsafe (actually, memcpy is also not completely threadsafe but it should be enough) and to remove "clearing" workarounds. Please report in the webinterface forum thread if you experience any saving problems from this change.

  5. #334
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5300 | alno | 2011-05-26 21:51:09 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: re-format output of oscam.lcd for direct output to display
    -------------------------------------------------------------------------
    r5299 | Admin | 2011-05-26 17:32:59 +02.00 (Thu, 26 May 2011) | 10 lines
    
    Replace all malloc/calloc calls (in main OSCam directory) with cs_malloc and add handling for memory allocation failures.

  6. #335
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5302 | alno | 2011-05-26 22:20:10 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: Testclient removed - sorry
    -------------------------------------------------------------------------
    r5301 | alno | 2011-05-26 22:18:12 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: reformat output to 53 characters
    -------------------------------------------------------------------------
    r5300 | alno | 2011-05-26 21:51:09 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: re-format output of oscam.lcd for direct output to display

  7. #336
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5303 | alno | 2011-05-26 23:21:45 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: revoe status tagging
    -------------------------------------------------------------------------
    r5302 | alno | 2011-05-26 22:20:10 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: Testclient removed - sorry

  8. #337
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5304 | Admin | 2011-05-28 01:47:42 +02.00 (Sat, 28 May 2011) | 10 lines
    
    Fix memcpy issues in reader-videoguard2 and smartreader module: Memcpy() has undefined behaviour if it copies data onto itself => use memmove() instead.
    Fix: Set CCCam client into shutdown mode before sleeping in cleanup_thread() to prevent race conditions.
    Fix some locking behaviours: A trylock with an unlock might lead to undefined behaviour if the lock was not gained.
    Fix: If a thread holds a mutex and is killed, a deadlock may arise as the mutex never gets unlocked. Thus, the mutex is now saved in the client structure and cleaned up in cleanup_thread().
    -------------------------------------------------------------------------
    r5303 | alno | 2011-05-26 23:21:45 +02.00 (Thu, 26 May 2011) | 1 line
    
    LCD: revoe status tagging

  9. #338
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5305 | alno | 2011-05-28 07:38:52 +02.00 (Sat, 28 May 2011) | 2 lines
    
    Monitor: repair user reload
    -------------------------------------------------------------------------
    r5304 | Admin | 2011-05-28 01:47:42 +02.00 (Sat, 28 May 2011) | 10 lines
    
    Fix memcpy issues in reader-videoguard2 and smartreader module: Memcpy() has undefined behaviour if it copies data onto itself => use memmove() instead.
    Fix: Set CCCam client into shutdown mode before sleeping in cleanup_thread() to prevent race conditions.
    Fix some locking behaviours: A trylock with an unlock might lead to undefined behaviour if the lock was not gained.
    Fix: If a thread holds a mutex and is killed, a deadlock may arise as the mutex never gets unlocked. Thus, the mutex is now saved in the client structure and cleaned up in cleanup_thread().

  10. #339
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5306 | neoen | 2011-05-28 10:36:06 +02.00 (Sat, 28 May 2011) | 1 line
    
    Seca ECMs using OP Key xE are sent to reader even if privider is expired
    -------------------------------------------------------------------------
    r5305 | alno | 2011-05-28 07:38:52 +02.00 (Sat, 28 May 2011) | 2 lines
    
    Monitor: repair user reload

  11. #340
    VIP Member Andushi's Avatar
    Join Date
    13-04-2010
    Location
    United Nations
    Posts
    4,103
    Uploads
    2,275
    Likes
    29

    Re: Latest version OSCam

    Code:
    r5307 | Admin | 2011-05-28 12:48:32 +02.00 (Sat, 28 May 2011) | 2 lines
    
    Fix for 5304: Add forgotten cs_unlock in llist, remove "deadlock detection" as it might fail under heavy locking, make sure that llist isnt interrupted while cleaning up.
    -------------------------------------------------------------------------
    r5306 | neoen | 2011-05-28 10:36:06 +02.00 (Sat, 28 May 2011) | 1 line
    
    Seca ECMs using OP Key xE are sent to reader even if privider is expired

Advertise Here

Similar Threads

  1. Update ║➽║DUBAİ║➽║One TV║➽║Watch home║*ONE TV║⚽️║
    By WaRp in forum Satellite TV Listings
    Replies: 1647
    Last Post: Yesterday, 22:05:19
  2. Replies: 52
    Last Post: 02-07-2026, 21:50:36
  3. New ║➽║Daily║➽║ PurE2║v.7.6║ Novaler TEAM║*.DOWNLOAD║
    By mehmetkarahanlı in forum Novaler Images
    Replies: 44
    Last Post: 17-06-2026, 20:20:36
  4. Replies: 15
    Last Post: 05-06-2026, 22:14:41
  5. Replies: 9
    Last Post: 17-05-2026, 13:29:00

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •