Sometimes this function locks my program, and it's freezes until i close it. What is wrong here ?

function del_from_list(id:string):boolean;
var i : integer;
begin
  Result := True;
  try
    with global_list.LockList do
    begin
      for i:=0 to Count-1 do
      begin
        if Tthread_list(Items[i]).id = id then
        begin
          Delete(i);
          break;
        end;
      end;
    end;
  finally
    global_list.UnlockList;
  end;
end;

the class

  Tthread_list = class
  public
    id   : string;
    constructor Create(const id: string);
  end;

I'm adding to the list like that:

global_list.Add(Tthread_list.Create('xxx'));

global list is a global variable

var global_list : TThreadList = nil;
link|improve this question

I see no reason that this should cause a hang. Is this all the code in the app that hangs? – David Heffernan Dec 17 '11 at 8:33
1  
Most likely you have a classic deadlock situation but this code alone cannot cause it. There must be another lock somewhere. – David Heffernan Dec 17 '11 at 9:23
You are deleting a class object item in a list without freeing the object first. If an exception occurs because of that, your program will lock. The answer by Remy (which you accepted) solves the lock, but not the primary error. – LU RD Dec 17 '11 at 13:13
@LURD so can you explain how Remy's answer solves the problem. I simply must be missing something. – David Heffernan Dec 17 '11 at 14:05
@DavidHeffernan, I assumed it solved the problem because it's the accepted answer. – LU RD Dec 17 '11 at 14:11
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

You need to call LockList() outside of the try block instead of inside of it, eg:

function del_from_list(const id: string): boolean;
var
  List: TList;
  i : integer;
begin
  Result := False;
  List := global_list.LockList;
  try
    with List do
    begin
      for i :=0 to Count-1 do
      begin
        if Tthread_list(Items[i]).id = id then
        begin
          Delete(i);
          Result := True;
          break;
        end;
      end;
    end;
  finally
    global_list.UnlockList;
  end;
end;
link|improve this answer
1  
Remy, I agree that the resource acquisition (lock) should be done before entering the try..finally block, but doing it the other way (OP) should only cause a problem if the resource acquisition fails and throws. Refresh my memory - can TThreadList.LockList ever throw an exception? – dthorpe Dec 17 '11 at 6:34
4  
@Remy Do you believe that this change, which is indeed correct, will be the difference between a working app and a deadlock? If so can you explain why you believe that. If not then why did you post this as an answer? It seems like it should be a comment to me. – David Heffernan Dec 17 '11 at 8:52
Thanks......... – waza123 Dec 17 '11 at 10:35
@dthorpe LockList today is TMonitor.Enter(FLock); Result := FList; so it won't throw unless there is heap corruption or a bug in TMonitor. – David Heffernan Dec 17 '11 at 12:12
2  
@LU RD That's just a memory leak. It's not going to lead to a deadlock. – David Heffernan Dec 17 '11 at 13:58
show 5 more comments
feedback

for loop counts in the wrong direction. When deleting members, you MUST count down, not up.

link|improve this answer
4  
Not when a Break is used after calling Delete(). You only need to loop backwards if you are deleting multiple items from the list. – Remy Lebeau Dec 17 '11 at 5:37
yeah, thats why there is a break. – waza123 Dec 17 '11 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.