The term "infinite loop" refers to any execution instance of a loop in which the loop's exit criteria are never satisfied; such a loop would perform a potentially infinite number of iterations of the loop body. The general problem of determining whether the execution of a loop with given ...

learn more… | top users | synonyms

-1
votes
1answer
38 views

Stuck in while loop

I have some basic code that i'm using in a tunneling program in ComputerCraft and I can't seem to break this loop. function enderStore() turtle.select(2) turtle.placeDown() while true do ...
0
votes
1answer
53 views

Why does this code result in an infinite loop?

I cant for my life figure out why this doesn't work. var refP = []; var distance = function (p1, p2) { return dist(p1.x, p1.y, p2.x, p2.y); } while (refP.length < 24) { var pusher = { ...
1
vote
1answer
58 views

A field defined by a method that uses that same field… circular definition in Java is hurting my head

I came across this code on Vogella which demonstrates creating a LabelProvider for a JFACE tree. I'm finding it really confusing however. The Image objects, named FOLDER and FILE are defined by ...
0
votes
1answer
66 views

C++ Infinite Loop causing a stack overflow error?

Okay, so I've been working on my calculator. I am currently trying to get it to tell the difference between a valid integer and a character. As an easy workaround I did: int calc() { cout << ...
0
votes
2answers
26 views

Staying in a method until a button is clicked so many times [duplicate]

I am trying to have the number reduce by 10 every time myButton is clicked. Then when the button is less than or equal to 0, I want the method to finish. I only want the number to be reduced by 10 ...
2
votes
1answer
40 views

How to wrap around in PHP array when index falls off the end?

I want to be able to retrieve the value of an array by using the numeric key. The catch is that if the key is beyond the array length, I need it to loop through the array again. $my_array = ...
0
votes
2answers
45 views

VisualBasic6 - read continuously a variable

I need read in an infinite loop some variables and in the case it changes the boolean status it must do something. I tried to use a Do...Loop but the application crashes. Is there a way in visual ...
1
vote
1answer
32 views

JavaScript deadlock

Here I saw JavaScript deadlocks and this code: var loop = true, block = setTimeout(function(){loop = false}, 1); while(loop); It's definitely infinite loop and causes to browser freezing. It's said ...
0
votes
0answers
47 views

Connect to a PPTP VPN (Server 2008) on an Apple client (iPhone / MacOS)

I've been searching all over the web for a solution for this one. I want to setup a VPN connection on Windows Server 2008 for multiple clients at the same time. Using L2TP with a secret word, ...
-2
votes
0answers
69 views

Infinite looping php [closed]

I have a facebook app and I have a problem with a php file. I can't access the script because it's infinite looping until timeout. What is wrong? Here is my code: <?php include '../utils.php'; ...
0
votes
3answers
78 views

Endless Loop - VBA Script That Runs when MailItem is Added to Sent Folder, then Creates Copy

I recently completed an outlook vba script that will scan the subject line of each mailitem added to the sent folder, looking for a project number in the subject. When detected, the script extracts ...
9
votes
5answers
304 views

Is while(1); undefined behavior in C?

In C++11 is it Undefined Behavior, but is it the case in C that while(1); is Undefined Behavior?
0
votes
2answers
34 views

Building RSS from other RSS feeds, how to prevent loop / recursion / circular inclusion?

This is an RSS feed (A) where the user can add several images, but he/she can also add a RSS feed (B) from a different user with images. When requesting feed (A), the server then fetches feed (B), and ...
0
votes
2answers
56 views

c++ breaking out of loop by key press at any time

What I have here is a loop that is supposed to read the output on a piece of equipment every 500 milliseconds. This part works fine. However, when I try to introduce cin.get to pick up the key "n" ...
0
votes
1answer
70 views

I have a continuous loop and I cannot figure out what is wrong with it

I have a continuous loop in my C code and I cannot figure out why exactly it is acting this way. I feel that I am missing something noticable here but I just can't see it for some reason. Here is the ...
0
votes
1answer
27 views

preventing infinite loops prolog

I got the following promblem: the following facts and predicates are defined: father(avr, yit). male(avr). married(avr, sara). father(yit, yaak). married(rivka, yit). father(yaak, yosef). ...
1
vote
3answers
62 views

Why does this code become an infinite loop?

I wrote this simple code to fetch a double and just keep asking until one was given, but when you give a string it just turns into an infinite loop and I can't figure out why. Any reason why it ...
1
vote
1answer
44 views

Killing OpenCL Kernels

Is there any way to kill a running OpenCL kernel through the OpenCL API? I haven't found anything in the spec. The only solutions I could come up with are 1) periodically checking a flag in the ...
1
vote
1answer
73 views

Pointer queue extracting goes infinite loop in C

I got a chance to gain some extra points for a couple of C exercises. The task is to enhance program to use head and tail pointers (for FIFO queue) to avoid unneccessary while loops at extract ...
0
votes
4answers
78 views

How do I mitigate the risk of an infinite loop?

We are looking through our code trying to identify high CPU usage, and I am looking at several areas where we use while loops. I would like to take the risk of infinite loops out of the code shown ...
-1
votes
2answers
44 views

Possible Infinite Loop when streaming response

We are trying to identify high CPU usage in services we have, and we believe there are a few potential areas that may be causing infinite loops. Below is code that we believe may potentially be ...
0
votes
1answer
20 views

Getting an infinite calling stack with this javascript

I have: var c = { typeStart: function(msg, loc) { loc.append("<p>"); this.typeLetter(msg, loc, 0); }, typeLetter: function(msg, loc, pos) { ...
3
votes
2answers
44 views

Modification of the basic if expression in Scheme. Why does it go into an infinite loop?

In Scheme, I modified the basic 'if' command as: (define (modified-if predicate then-clause else-clause) (if predicate then-clause else-clause)) And then I defined a simple factorial ...
0
votes
1answer
52 views

Program creates an infinite number of copies of itself

I am writing a program for my java class that displays a binary tree. However one of the problems I'm running into is that the program creates an infinite number of copies of itself when it's first ...
0
votes
2answers
74 views

Java textField infinite loop

Game class: import java.util.Random; public class Game { public static void main(String args[]){ //----------Sets up GUI---------- GUI gameGUI = new GUI(); gameGUI.setVisible(true); ...
1
vote
0answers
90 views

Java infinite loop in tray game algorithm [closed]

I'm trying to make an artificial intelligence in a "tray" game. My problem is with the algorithm, which is used a lot and is called alphabeta. When I'm trying to simulate a move, the recursion looks ...
6
votes
3answers
136 views

What happens when you have an infinite loop in Django view code?

Something that I just thought about: Say I'm writing view code for my Django site, and I make a mistake and create an infinite loop. Whenever someone would try to access the view, the worker ...
-3
votes
1answer
160 views

Is there an operating system (or other runtime environment) that can detect infinite loops? [closed]

EDIT: this question has been ported here, where it seems to fit a little better. Does there exist an OS (or any other runtime environment) that can detect infinite loops and subsequently stop the ...
0
votes
1answer
42 views

PHP function goes into an infinite loop under certain conditions [closed]

I am developing a facebook app and I have some php functions. When I call one of them, the request is sent over and over and goes in an infinite loop. I have no clue why. My function is: function ...
0
votes
1answer
34 views

Stop debugger on current line of code being executed in Visual C# Express 2010

So my program seems to be stuck in a loop somewhere. Unfortunately it doesn't run out of memory or overflow the stack, so it just keeps running. To figure out what it's doing I could of course start ...
0
votes
1answer
59 views

Stack overflow from infinite loop - detecting cycles in modified DFS

I am going a bit crazy at this point trying to determine the source of an infinite loop (getting a stackoverflow error). I am trying to implement a modified DFS to detect cycles in a graph. I am ...
-1
votes
2answers
37 views

Stop infinite loop due to 24:00:00 (00:00:00) being less than 23:59:00 instead of more

I have a database that has the startTime for a task, the endTime, and how often it runs (everyMinutes). I am taking this data into php, and using a loop writing all expected times to a separate ...
0
votes
1answer
107 views

C++ program, infinite loop on input

Hello i compile this program to an executable called picodb and try to run it through a shell bash script at linux. int main(int argc, char** argv) { Debbuger DB(argc,argv); char ...
1
vote
1answer
34 views

Infinite loop prolog

I am writing a function that returns distinct sublists of a size n. When I run the following prolog code with a query gen_list_n(4,D,[1,2,3,4]) it runs into an infinite loop after returning the first ...
1
vote
5answers
114 views

Switch statement within while loop in C

Thank you guys for your help. Your guidance helped me better understand what I was doing wrong.
0
votes
2answers
46 views

why does my printf statement pop up simultaneously? and get an infinite loop?

Why is it that when I start the program, I will start by doing the first printf statement, and then i input, then it simultaneously does two printf statements. Is this what's causing the infinite ...
5
votes
1answer
206 views

CakePHP 1.3 - Infinite looping in cake libraries, Apache crash, Session helper and __start()?

Upon adding the session helper to the app controller Apache begins crashing. I've tracked the problem down a ways with logging and found that in /CORE/cake/libs/controller/component/session the ...
1
vote
3answers
92 views

How would I find an infinite loop in an array of pointers?

I have an array of pointers (this is algorithmic, so don't go into language specifics). Most of the time, this array points to locations outside of the array, but it degrades to a point where every ...
3
votes
1answer
45 views

Infinite recursion when creating my own setter for a property

I've stumbled over some strange behaviour in Objective-C. I have a main.m: #include <Foundation/Foundation.h> #include "AClass.h" int main(int argc, char* argv[]) { AClass* tmpClass = ...
3
votes
1answer
80 views

While loop not terminating even when condition is met-Java

I am not sure what is wrong and my Professor is stumped as well. The while loop condition only terminates if the condition is met right away. Once the loop is running, the met condition no longer ...
1
vote
2answers
96 views

Express Authentication Redirects Leading to Infinite Loop

Ok, I am attempting to set up a passport-local authentication on a node.js server using express. It seems like it should be very straight forward. But I am getting stuck. these two snippets work ...
0
votes
1answer
94 views

Socket in C; infinite loop

So I'm trying to write a program that can accept inputs on both the client and server. Right now, it's infinite looping when I move these lines in the while(1) loop outside of it, like I was told to ...
5
votes
5answers
170 views

Java: Infinite Loop Convention [closed]

What is the convention for an infinite loop in Java? Should I write while(true) or for(;;)? I personally would use while(true) because I use while loops less often.
0
votes
0answers
68 views

RoyalSlider thumbnail loop

I'm using RoyalSlider thumbnail slider, and I want to transform it to a continuos (loop) slide. Someone could help me on it? Here you can see my work: ...
0
votes
0answers
84 views

AVL Tree Rebalancing and Traversing Errors in C

CODE: int main(void) //AVL Tree { TP TreeP=(TP)malloc(sizeof(struct AVLTree)); //TP is a Pointer to a Tree Structure InitializeTree(TreeP); //Initializes the Tree FILE * FP; int I=0; ...
1
vote
1answer
166 views

JQuery Infinite Horizontal Background Image Panning

ok so I have an image that I want to use as a background, but have it scroll like the image below. Can anyone help me out with this or link me in the correct direction? Hopefully not parallax, unless ...
0
votes
1answer
87 views

Why does the program get in an infinite loop [closed]

I have the following code. It calls the class's destructor indefinitely and crashes. If I change the size of the array to something larger than 0 is works fine. #include <iostream> using ...
0
votes
0answers
54 views

Outlook/Exchange 2013 Message rule loop

The business I'm working for is running Outlook 2013 with Exchange 2013 licenses. The business requires everyone to get all incoming mail, however, it's stipulated everyone controls their own inbox. ...
0
votes
2answers
38 views

Get notified when app runs into an infinite loop?

We have our product built on Java stack, and its basically a transactional system. I am just curious to know that do we have any mechanism so that a notification can be sent if program goes into an ...
1
vote
0answers
149 views

Infinite Loop Haskell [closed]

I'm trying to write a function that given a world, it iterates it as many times as specified then returns the new world. But when I run the function, it will iterate once, and then throw a ...

1 2 3 4 5 15